id) !== true) { throw new RuntimeException( 'id is required for update' ); } $id = $this->id; if (isset($this->index) !== true) { throw new RuntimeException( 'index is required for update' ); } $index = $this->index; return "/$index/_update/$id"; } public function getParamWhitelist(): array { return [ 'wait_for_active_shards', '_source', '_source_excludes', '_source_includes', 'lang', 'refresh', 'retry_on_conflict', 'routing', 'timeout', 'if_seq_no', 'if_primary_term', 'require_alias' ]; } public function getMethod(): string { return 'POST'; } public function setBody($body): Update { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } }