Ovh\Common\OvhClient::getCdnPopDetails PHP Метод

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

Get POP details/info
public getCdnPopDetails ( string $pop ) : string
$pop string : pop name
Результат string (json encoded)
    public function getCdnPopDetails($pop)
    {
        if (!$pop) {
            throw new BadMethodCallException('Parameter $pop is missing.');
        }
        return $this->get('cdn/pops/' . $pop)->send()->getBody(true);
    }