ChoreTask
ChoreTask(step, process_name, parameters)
Bases: TM1Object
Abstraction of a Chore Task
A Chore task always conistst of - The step integer ID: it's order in the execution plan. 1 to n, where n is the last Process in the Chore - The name of the process to execute - The parameters for the process
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
step
|
int
|
step in the execution order of the Chores' processes. 1 to n, where n the number of processes |
required |
process_name
|
str
|
name of the process |
required |
parameters
|
List[Dict[str, str]]
|
list of dictionaries with 'Name' and 'Value' property: [{ 'Name': '..', 'Value': '..' }, ... ] |
required |