/wp-content/plugins/backwpup/sdk/WindowsAzure/ServiceManagement/Models/Locations.php

https://bitbucket.org/cesarmedrano/cesarmedrano · PHP · 54 lines · 17 code · 5 blank · 32 comment · 0 complexity · 90f36be8674999457e1ef50b65d361f5 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\ServiceManagement\Models
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\ServiceManagement\Models;
  24. /**
  25. * Available data center locations on Windows Azure.
  26. *
  27. * @category Microsoft
  28. * @package WindowsAzure\ServiceManagement\Models
  29. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  30. * @copyright 2012 Microsoft Corporation
  31. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  32. * @version Release: @package_version@
  33. * @link https://github.com/windowsazure/azure-sdk-for-php
  34. */
  35. class Locations
  36. {
  37. const ANYWHERE_US = 'Anywhere US';
  38. const NORTH_CENTRAL_US = 'North Central US';
  39. const SOUTH_CENTRAL_US = 'South Central US';
  40. const WEST_US = 'West US';
  41. const EAST_US = 'East US';
  42. const ANYWHERE_EUROPE = 'Anywhere Europe';
  43. const WEST_EUROPE = 'West Europe';
  44. const NORTH_EUROPE = 'North Europe';
  45. const ANYWHERE_ASIA = 'Anywhere Asia';
  46. const SOUTHEAST_ASIA = 'Southeast Asia';
  47. const EAST_ASIA = 'East Asia';
  48. const COUNT = 11;
  49. }