Scalr\Stats\CostAnalytics\Entity\UsageTypeEntity::getUsageItems PHP Метод

getUsageItems() публичный Метод

Gets Usage Items which correspond to the Usage Type
public getUsageItems ( string $ignoreCache = false ) : EntityIterator
$ignoreCache string optional Whether it should ignore cache
Результат Scalr\Model\Collections\EntityIterator Returns entity iterator of the Usage Items which corresponds to the Usate Type
    public function getUsageItems($ignoreCache = false)
    {
        if ($ignoreCache || $this->usageItems === null) {
            $this->usageItems = UsageItemEntity::findByUsageType($this->id);
        }
        return $this->usageItems;
    }