* @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());
}