java.lang.Object
org.jclouds.googlecomputeengine.domain.Address

public abstract class Address extends Object
  • Method Details

    • id

      public abstract String id()
    • selfLink

      public abstract URI selfLink()
    • name

      public abstract String name()
    • creationTimestamp

      public abstract Date creationTimestamp()
    • description

      @Nullable public abstract String description()
    • 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.
    • users

      @Nullable public abstract List<URI> users()
      URL of the resource currently using this address.
    • 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.
    • create

      public static Address create(String id, URI selfLink, String name, Date creationTimestamp, String description, Address.Status status, List<URI> users, URI region, String address)