...

Package wf_info

import "ssa/seci_ingestion_status/pkg/wf_info"
Overview
Index

Overview ▾

type Argument

type Argument struct {
    CachePath string `json:"cache_path"`
}

type WfInfo

type WfInfo struct {
    WfId       int64  `json:"workflow_request_id"`
    WfName     string `json:"workflow_name"`
    ResultsDir string `json:"results_dir"`
    Argument   `json:"argument"`
}

func GetSECIWorkflowInfo

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
*