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);
    }