add:域名管理

This commit is contained in:
JaguarJack
2020-09-28 09:55:30 +08:00
parent 5ec24ae9c9
commit 4b8d5aa507
17 changed files with 622 additions and 86 deletions

View File

@@ -44,12 +44,12 @@ class Domain implements DomainActionInterface
]);
}
public function read(array $params)
public function read($name)
{
// TODO: Implement info() method.
return $this->get([
'Action' => 'DescribeDomainInfo',
'DomainName' => $params['name']
'DomainName' => $name
]);
}
}