get([ 'Action' => 'DescribeDomains', 'StarMark' => true, 'SearchModel' => 'LIKE', 'PageNumber' => $params['page'] ?? 1, 'PageSize' => $params['limit'] ?? 20, ])); } public function store(array $params) { // TODO: Implement add() method. } public function delete(array $params) { // TODO: Implement delete() method. return $this->get([ 'Action' => 'DeleteDomain', 'DomainName' => $params['name'], ]); } public function read($name) { // TODO: Implement info() method. return $this->get([ 'Action' => 'DescribeDomainInfo', 'DomainName' => $name ]); } }