transform_id ?? null; if (isset($transform_id)) { return "/_data_frame/transforms/$transform_id"; } throw new RuntimeException('Missing parameter for the endpoint data_frame_transform_deprecated.delete_transform'); } public function getParamWhitelist(): array { return [ 'force' ]; } public function getMethod(): string { return 'DELETE'; } public function setTransformId($transform_id): DeleteTransform { if (isset($transform_id) !== true) { return $this; } $this->transform_id = $transform_id; return $this; } }