Ovh\Common\OvhClient::getCdnPopDetails PHP Method

getCdnPopDetails() public method

Get POP details/info
public getCdnPopDetails ( string $pop ) : string
$pop string : pop name
return 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);
    }