Executions
- class ExecutionHistoryMixin
This class defines all functions related to
notebook executions
.- get_executions(start=0, count=20)
Gets the executions and returns them in a generator with all
notebook executions
.- Parameters:
- Returns:
Iterator with Execution
- Return type:
Iterator[Execution]
- Usage:
>>> import blueconic >>> bc = blueconic.Client() >>> bc.get_executions() <generator object ExecutionHistory.get_executions>
- class Execution
- get_value(property_id)
Gets the first value of a property.
- get_values(property_id)
Gets all values of a property.
- property end_date
Returns the end datetime of the execution.
- property external_identifier
Returns the external identifier of the execution.
- property log_url
Returns the log url of the execution.
- property message
Returns the message of the execution.
- property properties
Returns the properties of this object.
- property property_ids
Returns the property IDs of this object.
- property run_count
Returns the run count of the execution.
- property run_id
Returns the run identifier of the execution.
- property start_date
Returns the start datetime of the execution.
- property state
Returns the state of the execution.