Examples of VirtualPoolChangeList


Examples of com.emc.storageos.model.vpool.VirtualPoolChangeList

     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

Examples of com.emc.storageos.model.vpool.VirtualPoolChangeList

     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

Examples of com.emc.storageos.model.vpool.VirtualPoolChangeList

     * @param id
     *        the ID of the block volume.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id) {
        VirtualPoolChangeList response = client
                .get(VirtualPoolChangeList.class, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here

Examples of com.emc.storageos.model.vpool.VirtualPoolChangeList

     * @param id
     *        the ID of the block virtual pool.
     * @return the list of virtual pool candidates.
     */
    public List<VirtualPoolChangeRep> listVirtualPoolChangeCandidates(URI id, BulkIdParam input) {
        VirtualPoolChangeList response = client.post(VirtualPoolChangeList.class, input, getIdUrl() + "/vpool-change/vpool", id);
        return defaultList(response.getVirtualPools());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.