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

org.openstack4j.api.trove.InstanceFlavorService Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.api.trove;

import org.openstack4j.model.trove.Flavor;

import java.util.List;

/**
 * This interface defines all methods for the manipulation of trove instance flavors
 *
 * @author sumit gandhi
 */

public interface InstanceFlavorService {

    /**
     * Returns all the available database instance flavors
     * @return the list of available flavors
     */
    List list();

    /**
     * Get the instance flavor specified by ID
     * @param id
     * @return the flavor or null if not found
     */
    Flavor get(String id);


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy