All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.manila.AvailabilityZone Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy