Class Address
- java.lang.Object
-
- org.jclouds.googlecomputeengine.domain.Address
-
public abstract class Address extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Address.Status
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
address()
The IP address represented by this resource.static Address
create(String id, URI selfLink, String name, Date creationTimestamp, String description, Address.Status status, List<URI> users, URI region, String address)
abstract Date
creationTimestamp()
abstract String
description()
abstract String
id()
abstract String
name()
abstract URI
region()
URL of the region where the address resides.abstract URI
selfLink()
abstract Address.Status
status()
The status of the address.abstract List<URI>
users()
URL of the resource currently using this address.
-
-
-
Method Detail
-
id
public abstract String id()
-
selfLink
public abstract URI selfLink()
-
name
public abstract String name()
-
creationTimestamp
public abstract Date creationTimestamp()
-
status
public abstract Address.Status status()
The status of the address. Valid items are RESERVED and IN USE. A reserved address is currently available to the project and can be used by a resource. An in-use address is currently being used by a resource.
-
region
public abstract URI region()
URL of the region where the address resides.
-
address
public abstract String address()
The IP address represented by this resource.
-
-