Skip to content

PipelineV4

Properties

Name Type Description Notes
id str
urn str The URN of the pipeline. The format is urn:ilmn:ica:\<type of the object\>:\<ID of the object\>#\<optional human readable hint representing the object\>. The hint can be omitted, in that case the hashtag (#) must also be omitted. [optional]
time_created datetime
time_modified datetime
owner UserIdentifier
tenant TenantIdentifier
code str The code of the pipeline
description str The description of the pipeline
status str The status of the pipeline [optional]
language str The language that is used by the pipeline
language_version PipelineLanguageVersion [optional]
pipeline_tags PipelineTag
analysis_storage AnalysisStorageV4
proprietary bool A boolean which indicates if the code of this pipeline is proprietary [optional] [default to False]
input_form_type str The type of the inputform used. [optional]
report_configs PipelineReportConfig [optional]

Example

from libica.openapi.v3.models.pipeline_v4 import PipelineV4

# TODO update the JSON string below
json = "{}"
# create an instance of PipelineV4 from a JSON string
pipeline_v4_instance = PipelineV4.from_json(json)
# print the JSON string representation of the object
print(PipelineV4.to_json())

# convert the object into a dict
pipeline_v4_dict = pipeline_v4_instance.to_dict()
# create an instance of PipelineV4 from a dict
pipeline_v4_from_dict = PipelineV4.from_dict(pipeline_v4_dict)

[Back to Model list] [Back to API list] [Back to README]