$this->parent->post('v1/ssh-keys', [ 'public_key' => $publicKey, 'name' => $name, ])))->setParent($this->parent); } /** * {@inheritDoc} */ public function find(string $id): ?SshKey { return (new SshKey(fn() => $this->parent->get(sprintf('v1/ssh-keys/%s', $id)))); } }