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