class
Task(wallaroo.object.Object):
Base class for all backend GraphQL API objects.
This class serves as a framework for API objects to be constructed based on
a partially-complete JSON response, and to fill in their remaining members
dynamically if needed.
Base constructor.
Each object requires:
- a GraphQL client - in order to fill its missing members dynamically
- an initial data blob - typically from unserialized JSON, contains at
- least the data for required
members (typically the object's primary key) and optionally other data
members.
def
name(*args, **kwargs):
def
workspace_id(*args, **kwargs):
def
status(*args, **kwargs):
def
task_type(*args, **kwargs):
def
created_at(*args, **kwargs):
def
updated_at(*args, **kwargs):
Return the runs associated with this task.
Parameters
- limit int The number of runs to return
- status str Return only runs with the matching status. One of "success", "failure", "running", "all"