Examples of StorageTierList


Examples of com.emc.storageos.model.block.tier.StorageTierList

     * @param storagePoolId
     *        the ID of the storage pool.
     * @return the list of storage tier references.
     */
    public List<NamedRelatedResourceRep> listByStoragePool(URI storagePoolId) {
        StorageTierList response = client.get(StorageTierList.class, PathConstants.STORAGE_TIER_BY_STORAGE_POOL,
                storagePoolId);
        return defaultList(response.getStorageTiers());
    }
View Full Code Here

Examples of com.emc.storageos.model.block.tier.StorageTierList

     * @param autoTierPolicyId
     *        the ID of the auto tier policy.
     * @return the list of storage pool references.
     */
    public List<NamedRelatedResourceRep> listByAutoTieringPolicy(URI autoTierPolicyId) {
        StorageTierList response = client.get(StorageTierList.class,
                PathConstants.STORAGE_TIER_BY_AUTO_TIERING_POLICY_URL, autoTierPolicyId);
        return defaultList(response.getStorageTiers());
    }
View Full Code Here

Examples of com.emc.storageos.model.block.tier.StorageTierList

     *
     * @return the list of storage tier references.
     */
    @Override
    public List<NamedRelatedResourceRep> list() {
        StorageTierList response = client.get(StorageTierList.class, baseUrl);
        return ResourceUtils.defaultList(response.getStorageTiers());
    }
View Full Code Here

Examples of com.emc.storageos.model.block.tier.StorageTierList

     * @param storagePoolId
     *        the ID of the storage pool.
     * @return the list of storage tier references.
     */
    public List<NamedRelatedResourceRep> listByStoragePool(URI storagePoolId) {
        StorageTierList response = client.get(StorageTierList.class, PathConstants.STORAGE_TIER_BY_STORAGE_POOL,
                storagePoolId);
        return defaultList(response.getStorageTiers());
    }
View Full Code Here

Examples of com.emc.storageos.model.block.tier.StorageTierList

     * @param autoTierPolicyId
     *        the ID of the auto tier policy.
     * @return the list of storage pool references.
     */
    public List<NamedRelatedResourceRep> listByAutoTieringPolicy(URI autoTierPolicyId) {
        StorageTierList response = client.get(StorageTierList.class,
                PathConstants.STORAGE_TIER_BY_AUTO_TIERING_POLICY_URL, autoTierPolicyId);
        return defaultList(response.getStorageTiers());
    }
View Full Code Here

Examples of com.emc.storageos.model.block.tier.StorageTierList

     *
     * @return the list of storage tier references.
     */
    @Override
    public List<NamedRelatedResourceRep> list() {
        StorageTierList response = client.get(StorageTierList.class, baseUrl);
        return ResourceUtils.defaultList(response.getStorageTiers());
    }
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.