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

org.openstack4j.api.sahara.DataSourceService Maven / Gradle / Ivy

package org.openstack4j.api.sahara;

import java.util.List;

import org.openstack4j.common.RestService;
import org.openstack4j.model.common.ActionResponse;
import org.openstack4j.model.sahara.DataSource;

/**
 * Sahara Data Processing Operations
 *
 * @author [email protected]
 */
public interface DataSourceService extends RestService {

    /**
     * List all data sources
     * 
     * @return list of data sources or empty
     */
     List list();

    /**
     * Get a data source by ID
     * @param datasourceId the data source identifier
     * @return the data source or null if not found
     */
     DataSource get(String datasourceId);

    /**
     * Create a new data source
     *
     * @param datasource the data source to create
     * @return the created data source
     */
     DataSource create(DataSource datasource);

    /**
     * Delete the specified data source 
     * 
     * @param datasourceId the data source identifier
     * @return the action response
     */
     ActionResponse delete(String datasourceId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy