type Argument struct { CachePath string `json:"cache_path"` }
type WfInfo struct { WfId int64 `json:"workflow_request_id"` WfName string `json:"workflow_name"` ResultsDir string `json:"results_dir"` Argument `json:"argument"` }
func GetSECIWorkflowInfo(wfReqId string, capoProfile string, path string) WfInfo
GetSECIWorkflowInfo *
* Get Workflow info for SECI Ingestion * * @param wf_req_id A string of a workflow request id * @param capo_profile A string with the path to the CAPO property file used to * get the workflow service url * @return a WfInfo struct *