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

org.ovirt.engine.sdk4.services.GlusterBricksService Maven / Gradle / Ivy

There is a newer version: 4.5.1
Show newest version
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package org.ovirt.engine.sdk4.services;

import java.io.IOException;
import java.math.BigInteger;
import java.util.List;
import org.ovirt.engine.sdk4.Request;
import org.ovirt.engine.sdk4.Response;
import org.ovirt.engine.sdk4.Service;
import org.ovirt.engine.sdk4.builders.GlusterBrickBuilder;
import org.ovirt.engine.sdk4.types.GlusterBrick;

/**
 * This service manages the gluster bricks in a gluster volume
 */
public interface GlusterBricksService extends Service {
    /**
     * Activate the bricks post data migration of remove brick operation.
     * 
     * Used to activate brick(s) once the data migration from bricks is complete but user no longer wishes to remove
     * bricks. The bricks that were previously marked for removal will now be used as normal bricks.
     * 
     * For example, to retain the bricks that on glustervolume `123` from which data was migrated, send a request like
     * this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/activate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     */
    public interface ActivateRequest extends Request {
        /**
         * Indicates if the activation should be performed asynchronously.
         */
        ActivateRequest async(Boolean async);
        ActivateRequest bricks(List bricks);
        /**
         * The list of bricks that need to be re-activated.
         */
        ActivateRequest bricks(GlusterBrick... bricks);
        /**
         * The list of bricks that need to be re-activated.
         */
        ActivateRequest bricks(GlusterBrickBuilder... bricks);
    }
    
    /**
     * Activate the bricks post data migration of remove brick operation.
     * 
     * Used to activate brick(s) once the data migration from bricks is complete but user no longer wishes to remove
     * bricks. The bricks that were previously marked for removal will now be used as normal bricks.
     * 
     * For example, to retain the bricks that on glustervolume `123` from which data was migrated, send a request like
     * this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/activate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     */
    public interface ActivateResponse extends Response {
    }
    
    /**
     * Activate the bricks post data migration of remove brick operation.
     * 
     * Used to activate brick(s) once the data migration from bricks is complete but user no longer wishes to remove
     * bricks. The bricks that were previously marked for removal will now be used as normal bricks.
     * 
     * For example, to retain the bricks that on glustervolume `123` from which data was migrated, send a request like
     * this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/activate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     */
    ActivateRequest activate();
    
    /**
     * Adds a list of bricks to gluster volume.
     * 
     * Used to expand a gluster volume by adding bricks. For replicated volume types, the parameter `replica_count`
     * needs to be passed. In case the replica count is being increased, then the number of bricks needs to be
     * equivalent to the number of replica sets.
     * 
     * For example, to add bricks to gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     111
     *     /export/data/brick3
     *   
     * 
     * ----
     */
    public interface AddRequest extends Request {
        AddRequest bricks(List bricks);
        /**
         * The list of bricks to be added to the volume
         */
        AddRequest bricks(GlusterBrick... bricks);
        /**
         * The list of bricks to be added to the volume
         */
        AddRequest bricks(GlusterBrickBuilder... bricks);
        /**
         * Replica count of volume post add operation.
         */
        AddRequest replicaCount(Integer replicaCount);
        /**
         * Replica count of volume post add operation.
         */
        AddRequest replicaCount(Long replicaCount);
        /**
         * Replica count of volume post add operation.
         */
        AddRequest replicaCount(BigInteger replicaCount);
        /**
         * Stripe count of volume post add operation.
         */
        AddRequest stripeCount(Integer stripeCount);
        /**
         * Stripe count of volume post add operation.
         */
        AddRequest stripeCount(Long stripeCount);
        /**
         * Stripe count of volume post add operation.
         */
        AddRequest stripeCount(BigInteger stripeCount);
    }
    
    /**
     * Adds a list of bricks to gluster volume.
     * 
     * Used to expand a gluster volume by adding bricks. For replicated volume types, the parameter `replica_count`
     * needs to be passed. In case the replica count is being increased, then the number of bricks needs to be
     * equivalent to the number of replica sets.
     * 
     * For example, to add bricks to gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     111
     *     /export/data/brick3
     *   
     * 
     * ----
     */
    public interface AddResponse extends Response {
        /**
         * The list of bricks to be added to the volume
         */
        List bricks();
    }
    
    /**
     * Adds a list of bricks to gluster volume.
     * 
     * Used to expand a gluster volume by adding bricks. For replicated volume types, the parameter `replica_count`
     * needs to be passed. In case the replica count is being increased, then the number of bricks needs to be
     * equivalent to the number of replica sets.
     * 
     * For example, to add bricks to gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     111
     *     /export/data/brick3
     *   
     * 
     * ----
     */
    AddRequest add();
    
    /**
     * Lists the bricks of a gluster volume.
     * 
     * For example, to list bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * GET /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * Provides an output as below:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host1:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     111
     *     up
     *   
     *   
     *     host2:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     222
     *     up
     *   
     * 
     * ----
     */
    public interface ListRequest extends Request {
        /**
         * Sets the maximum number of bricks to return. If not specified all the bricks are returned.
         */
        ListRequest max(Integer max);
        /**
         * Sets the maximum number of bricks to return. If not specified all the bricks are returned.
         */
        ListRequest max(Long max);
        /**
         * Sets the maximum number of bricks to return. If not specified all the bricks are returned.
         */
        ListRequest max(BigInteger max);
    }
    
    /**
     * Lists the bricks of a gluster volume.
     * 
     * For example, to list bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * GET /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * Provides an output as below:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host1:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     111
     *     up
     *   
     *   
     *     host2:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     222
     *     up
     *   
     * 
     * ----
     */
    public interface ListResponse extends Response {
        List bricks();
    }
    
    /**
     * Lists the bricks of a gluster volume.
     * 
     * For example, to list bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * GET /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * Provides an output as below:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host1:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     111
     *     up
     *   
     *   
     *     host2:/rhgs/data/brick1
     *     /rhgs/data/brick1
     *     222
     *     up
     *   
     * 
     * ----
     */
    ListRequest list();
    
    /**
     * Start migration of data prior to removing bricks.
     * 
     * Removing bricks is a two-step process, where the data on bricks to be removed, is first migrated to remaining
     * bricks. Once migration is completed the removal of bricks is confirmed via the API
     * <>. If at any point, the action needs to be cancelled
     * <> has to be called.
     * 
     * For instance, to delete a brick from a gluster volume with id `123`, send a request:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/migrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     * 
     * The migration process can be tracked from the job id returned from the API using
     * <> and steps in job using <>
     */
    public interface MigrateRequest extends Request {
        /**
         * Indicates if the migration should be performed asynchronously.
         */
        MigrateRequest async(Boolean async);
        MigrateRequest bricks(List bricks);
        /**
         * List of bricks for which data migration needs to be started.
         */
        MigrateRequest bricks(GlusterBrick... bricks);
        /**
         * List of bricks for which data migration needs to be started.
         */
        MigrateRequest bricks(GlusterBrickBuilder... bricks);
    }
    
    /**
     * Start migration of data prior to removing bricks.
     * 
     * Removing bricks is a two-step process, where the data on bricks to be removed, is first migrated to remaining
     * bricks. Once migration is completed the removal of bricks is confirmed via the API
     * <>. If at any point, the action needs to be cancelled
     * <> has to be called.
     * 
     * For instance, to delete a brick from a gluster volume with id `123`, send a request:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/migrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     * 
     * The migration process can be tracked from the job id returned from the API using
     * <> and steps in job using <>
     */
    public interface MigrateResponse extends Response {
    }
    
    /**
     * Start migration of data prior to removing bricks.
     * 
     * Removing bricks is a two-step process, where the data on bricks to be removed, is first migrated to remaining
     * bricks. Once migration is completed the removal of bricks is confirmed via the API
     * <>. If at any point, the action needs to be cancelled
     * <> has to be called.
     * 
     * For instance, to delete a brick from a gluster volume with id `123`, send a request:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/migrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     
     *       host1:/rhgs/brick1
     *     
     *   
     * 
     * ----
     * 
     * The migration process can be tracked from the job id returned from the API using
     * <> and steps in job using <>
     */
    MigrateRequest migrate();
    
    /**
     * Removes bricks from gluster volume.
     * 
     * The recommended way to remove bricks without data loss is to first migrate the data using
     * <> and then removing them. If migrate was not called on
     * bricks prior to remove, the bricks are removed without data migration which may lead to data loss.
     * 
     * For example, to delete the bricks from gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * DELETE /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    public interface RemoveRequest extends Request {
        /**
         * Indicates if the remove should be performed asynchronously.
         */
        RemoveRequest async(Boolean async);
        RemoveRequest bricks(List bricks);
        /**
         * The list of bricks to be removed
         */
        RemoveRequest bricks(GlusterBrick... bricks);
        /**
         * The list of bricks to be removed
         */
        RemoveRequest bricks(GlusterBrickBuilder... bricks);
        /**
         * Replica count of volume post add operation.
         */
        RemoveRequest replicaCount(Integer replicaCount);
        /**
         * Replica count of volume post add operation.
         */
        RemoveRequest replicaCount(Long replicaCount);
        /**
         * Replica count of volume post add operation.
         */
        RemoveRequest replicaCount(BigInteger replicaCount);
    }
    
    /**
     * Removes bricks from gluster volume.
     * 
     * The recommended way to remove bricks without data loss is to first migrate the data using
     * <> and then removing them. If migrate was not called on
     * bricks prior to remove, the bricks are removed without data migration which may lead to data loss.
     * 
     * For example, to delete the bricks from gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * DELETE /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    public interface RemoveResponse extends Response {
    }
    
    /**
     * Removes bricks from gluster volume.
     * 
     * The recommended way to remove bricks without data loss is to first migrate the data using
     * <> and then removing them. If migrate was not called on
     * bricks prior to remove, the bricks are removed without data migration which may lead to data loss.
     * 
     * For example, to delete the bricks from gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * DELETE /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    RemoveRequest remove();
    
    /**
     * Stops migration of data from bricks for a remove brick operation.
     * 
     * To cancel data migration that was started as part of the 2-step remove brick process in case the user wishes to
     * continue using the bricks. The bricks that were marked for removal will function as normal bricks post this
     * operation.
     * 
     * For example, to stop migration of data from the bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/stopmigrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    public interface StopMigrateRequest extends Request {
        /**
         * Indicates if the action should be performed asynchronously.
         */
        StopMigrateRequest async(Boolean async);
        StopMigrateRequest bricks(List bricks);
        /**
         * List of bricks for which data migration needs to be stopped. This list should match the arguments passed to
         * <>.
         */
        StopMigrateRequest bricks(GlusterBrick... bricks);
        /**
         * List of bricks for which data migration needs to be stopped. This list should match the arguments passed to
         * <>.
         */
        StopMigrateRequest bricks(GlusterBrickBuilder... bricks);
    }
    
    /**
     * Stops migration of data from bricks for a remove brick operation.
     * 
     * To cancel data migration that was started as part of the 2-step remove brick process in case the user wishes to
     * continue using the bricks. The bricks that were marked for removal will function as normal bricks post this
     * operation.
     * 
     * For example, to stop migration of data from the bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/stopmigrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    public interface StopMigrateResponse extends Response {
    }
    
    /**
     * Stops migration of data from bricks for a remove brick operation.
     * 
     * To cancel data migration that was started as part of the 2-step remove brick process in case the user wishes to
     * continue using the bricks. The bricks that were marked for removal will function as normal bricks post this
     * operation.
     * 
     * For example, to stop migration of data from the bricks of gluster volume `123`, send a request like this:
     * 
     * [source]
     * ----
     * POST /ovirt-engine/api/clusters/567/glustervolumes/123/glusterbricks/stopmigrate
     * ----
     * 
     * With a request body like this:
     * 
     * [source,xml]
     * ----
     * 
     *   
     *     host:brick_directory
     *   
     * 
     * ----
     */
    StopMigrateRequest stopMigrate();
    
    /**
     * Returns a reference to the service managing a single gluster brick.
     */
    GlusterBrickService brickService(String id);
    /**
     * Service locator method, returns individual service on which the URI is dispatched.
     */
    Service service(String path);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy