org.openstack4j.model.manila.AvailabilityZone Maven / Gradle / Ivy
package org.openstack4j.model.manila;
import org.openstack4j.model.ModelEntity;
/**
* Represents an availability zone.
*
* @author Daniel Gonzalez Nothnagel
*/
public interface AvailabilityZone extends ModelEntity {
/**
* @return the name of the availability zone
*/
String getName();
/**
* @return the availability zone ID
*/
String getId();
/**
* @return the date and time stamp when the availability zone was created
*/
String getCreatedAt();
/**
* @return the date and time stamp when the availability zone was updated
*/
String getUpdatedAt();
}