Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.22 KB

File metadata and controls

32 lines (25 loc) · 1.22 KB

ExecutionUnit

Resource containing an executable or runtime information for executing the process.

Properties

Name Type Description Notes
additional_properties object [optional]
config ExecutionUnitConfig [optional]
deployment str [optional]
image str Container image reference for the execution unit.
type str Type of execution unit.

Example

from unity_sps_ogc_processes_api_python_client.models.execution_unit import ExecutionUnit

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

# convert the object into a dict
execution_unit_dict = execution_unit_instance.to_dict()
# create an instance of ExecutionUnit from a dict
execution_unit_from_dict = ExecutionUnit.from_dict(execution_unit_dict)

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