job_id) !== true) { throw new RuntimeException( 'job_id is required for get_categories' ); } $job_id = $this->job_id; $category_id = $this->category_id ?? null; if (isset($category_id)) { return "/_ml/anomaly_detectors/$job_id/results/categories/$category_id"; } return "/_ml/anomaly_detectors/$job_id/results/categories/"; } public function getParamWhitelist(): array { return [ 'from', 'size', 'partition_field_value' ]; } public function getMethod(): string { return isset($this->body) ? 'POST' : 'GET'; } public function setBody($body): GetCategories { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setJobId($job_id): GetCategories { if (isset($job_id) !== true) { return $this; } $this->job_id = $job_id; return $this; } public function setCategoryId($category_id): GetCategories { if (isset($category_id) !== true) { return $this; } $this->category_id = $category_id; return $this; } }