Ovh\Dedicated\Server\ServerClient::getNetworkSpecifications PHP Method

getNetworkSpecifications() public method

Get Network Specs - internal/external speeds and limits
public getNetworkSpecifications ( string $domain ) : mixed
$domain string
return mixed normal handling of 400/404s
    public function getNetworkSpecifications($domain)
    {
        try {
            $r = $this->get('dedicated/server/' . $domain . '/specifications/network')->send();
        } catch (\Exception $e) {
            throw new ServerException($e->getMessage(), $e->getCode(), $e);
        }
        return $r->getBody(true);
    }