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