datafeed_id ?? null; if (isset($datafeed_id)) { return "/_ml/datafeeds/$datafeed_id/_update"; } throw new RuntimeException('Missing parameter for the endpoint ml.update_datafeed'); } public function getParamWhitelist(): array { return [ 'ignore_unavailable', 'allow_no_indices', 'ignore_throttled', 'expand_wildcards' ]; } public function getMethod(): string { return 'POST'; } public function setBody($body): UpdateDatafeed { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setDatafeedId($datafeed_id): UpdateDatafeed { if (isset($datafeed_id) !== true) { return $this; } $this->datafeed_id = $datafeed_id; return $this; } }