Class Location
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.Location
-
public abstract class Location extends Object
A data center location that is valid for your subscription.
-
-
Constructor Summary
Constructors Constructor Description Location()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Locationcreate(String id, String name, String displayName, String longitude, String latitude)abstract StringdisplayName()The localized name of the data center location.abstract Stringid()The id of the data center.abstract Stringlatitude()The latitude of the datacenterabstract Stringlongitude()The longitude of the datacenterabstract Stringname()The name of the data center location.
-
-
-
Method Detail
-
id
public abstract String id()
The id of the data center.
-
name
public abstract String name()
The name of the data center location. Ex.West Europe.
-
displayName
public abstract String displayName()
The localized name of the data center location.
-
longitude
public abstract String longitude()
The longitude of the datacenter
-
latitude
public abstract String latitude()
The latitude of the datacenter
-
-