job_id) !== true) { throw new RuntimeException( 'job_id is required for get_model_snapshots' ); } $job_id = $this->job_id; $snapshot_id = $this->snapshot_id ?? null; if (isset($snapshot_id)) { return "/_ml/anomaly_detectors/$job_id/model_snapshots/$snapshot_id"; } return "/_ml/anomaly_detectors/$job_id/model_snapshots"; } public function getParamWhitelist(): array { return [ 'from', 'size', 'start', 'end', 'sort', 'desc' ]; } public function getMethod(): string { return isset($this->body) ? 'POST' : 'GET'; } public function setBody($body): GetModelSnapshots { if (isset($body) !== true) { return $this; } $this->body = $body; return $this; } public function setJobId($job_id): GetModelSnapshots { if (isset($job_id) !== true) { return $this; } $this->job_id = $job_id; return $this; } public function setSnapshotId($snapshot_id): GetModelSnapshots { if (isset($snapshot_id) !== true) { return $this; } $this->snapshot_id = $snapshot_id; return $this; } }