Scalr\Api\Service\User\V1beta0\Controller\Events::fetchAction PHP Метод

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

Fetches detailed info about the Event
public fetchAction ( string $eventId ) : Scalr\Api\DataType\ResultEnvelope
$eventId string Unique identifier of the Event
Результат Scalr\Api\DataType\ResultEnvelope
    public function fetchAction($eventId)
    {
        $this->checkPermissions(Acl::RESOURCE_GENERAL_CUSTOM_EVENTS);
        $event = $this->getEvent($eventId);
        return $this->result($this->adapter('event')->toData($event));
    }