Skip to content

Instantly share code, notes, and snippets.

@isaacabraham
Last active August 29, 2015 14:06
Show Gist options
  • Save isaacabraham/31ce34c49b7e9ac6620b to your computer and use it in GitHub Desktop.
Save isaacabraham/31ce34c49b7e9ac6620b to your computer and use it in GitHub Desktop.
Sample XML from Azure Service Management
<Locations xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Location>
<Name>South Central US</Name>
<DisplayName>South Central US</DisplayName>
<AvailableServices>
<AvailableService>Compute</AvailableService>
<AvailableService>Storage</AvailableService>
</AvailableServices>
<ComputeCapabilities>
<WebWorkerRoleSizes>
<RoleSize>A5</RoleSize>
<RoleSize>A6</RoleSize>
<RoleSize>Standard_D3</RoleSize>
<RoleSize>Standard_D4</RoleSize>
</WebWorkerRoleSizes>
<VirtualMachinesRoleSizes>
<RoleSize>A5</RoleSize>
<RoleSize>A6</RoleSize>
<RoleSize>Standard_D3</RoleSize>
<RoleSize>Standard_D4</RoleSize>
</VirtualMachinesRoleSizes>
</ComputeCapabilities>
</Location>
<Location>
<Name>Central US</Name>
<DisplayName>Central US</DisplayName>
<AvailableServices>
<AvailableService>Compute</AvailableService>
<AvailableService>Storage</AvailableService>
<AvailableService>PersistentVMRole</AvailableService>
<AvailableService>HighMemory</AvailableService>
</AvailableServices>
<ComputeCapabilities>
<WebWorkerRoleSizes>
<RoleSize>A5</RoleSize>
<RoleSize>A6</RoleSize>
<RoleSize>A7</RoleSize>
</WebWorkerRoleSizes>
<VirtualMachinesRoleSizes>
<RoleSize>A5</RoleSize>
<RoleSize>A6</RoleSize>
</VirtualMachinesRoleSizes>
</ComputeCapabilities>
</Location>
</Locations>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment