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

org.openstack4j.api.manila.SchedulerStatsService Maven / Gradle / Ivy

package org.openstack4j.api.manila;

import java.util.List;

import org.openstack4j.common.RestService;
import org.openstack4j.model.manila.BackendStoragePool;

/**
 * Scheduler Stats Service for Manila Shared Filesystems.
 *
 * @author Daniel Gonzalez Nothnagel
 */
public interface SchedulerStatsService extends RestService {
    /**
     * Lists all back-end storage pools.
     *
     * @return a list of all back-end storage pools
     */
    List pools();

    /**
     * Lists all storage pools for a back end, with details.
     *
     * @return a list of all back-end storage pools with details
     */
    List poolsDetail();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy