Skip to content

PipelineBundle

Properties

Name Type Description Notes
id str
name str
max_number_of_allowed_slots int
active_pipelines List[PipelineV3]
canceled_pipelines List[PipelineV3]
retired_pipelines List[PipelineV3]
regions List[Region]
analysis_storages List[AnalysisStorageV3]

Example

from libica.openapi.v3.models.pipeline_bundle import PipelineBundle

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

# convert the object into a dict
pipeline_bundle_dict = pipeline_bundle_instance.to_dict()
# create an instance of PipelineBundle from a dict
pipeline_bundle_from_dict = PipelineBundle.from_dict(pipeline_bundle_dict)

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