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