repository ?? null; if (isset($repository)) { return "/_snapshot/$repository"; } throw new RuntimeException('Missing parameter for the endpoint snapshot.create_repository'); } public function getParamWhitelist(): array { return [ 'master_timeout', 'timeout', 'verify', 'cluster_manager_timeout' ]; } public function getMethod(): string { return 'PUT'; } public function setBody($body): CreateRepository { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setRepository($repository): CreateRepository { if (isset($repository) !== true) { return $this; } $this->repository = $repository; return $this; } protected function getParamDeprecation(): array { return ['master_timeout' => 'cluster_manager_timeout']; } }