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 Location
create(String id, String name, String displayName, String longitude, String latitude)
abstract String
displayName()
The localized name of the data center location.abstract String
id()
The id of the data center.abstract String
latitude()
The latitude of the datacenterabstract String
longitude()
The longitude of the datacenterabstract String
name()
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
-
-