Package com.emc.storageos.model.block

Examples of com.emc.storageos.model.block.BlockSnapshotBulkRep


        return (BlockSnapshots) super.withInternal(internal);
    }

    @Override
    protected List<BlockSnapshotRestRep> getBulkResources(BulkIdParam input) {
        BlockSnapshotBulkRep response = client.post(BlockSnapshotBulkRep.class, input, getBulkUrl());
        return defaultList(response.getBlockSnapshots());
    }
View Full Code Here


        return (BlockSnapshots) super.withInactive(inactive);
    }

    @Override
    protected List<BlockSnapshotRestRep> getBulkResources(BulkIdParam input) {
        BlockSnapshotBulkRep response = client.post(BlockSnapshotBulkRep.class, input, getBulkUrl());
        return defaultList(response.getBlockSnapshots());
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.block.BlockSnapshotBulkRep

Copyright © 2018 www.massapicom. 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.