An Orchestration object that represents some user-defined code that has been packaged into a container and can be deployed.
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.
Runs this Orchestration once.
Parameters
- json_args Dict[Any, Any] A JSON object containing deploy-specific arguments.
Returns
A metadata object associated with the deploy Task
Runs this Orchestration on a cron schedule.
Parameters
- name str A descriptive identifier for this run.
- schedule str A cron-style scheduling string, e.g. "* * * * " or "/15 * * * *"
- timeout Optional[int] A timeout in milliseconds.
- json_args Dict[Any, Any] A JSON object containing deploy-specific arguments.
Returns
A metadata object associated with the deploy Task
Runs this Orchestration continuously.
Parameters
- name str A descriptive identifier for this run.
- service_name str A descriptive identifier for the service.
- service_port int A port number to expose for the service.
- service_protocol str Protocols to use for the service.
- json_args Dict[Any, Any] A JSON object containing deploy-specific arguments.
Returns
A metadata object associated with the deploy Task
Wraps a list of pipelines for display in a display-aware environment like Jupyter.
Inherited Members
- builtins.list
- list
- clear
- copy
- append
- insert
- extend
- pop
- remove
- index
- count
- reverse
- sort
Raised when uploading an Orchestration fails due to a backend issue.
Inherited Members
- builtins.BaseException
- with_traceback
- args
Raised when uploading an Orchestration without providing a file-like object.
Inherited Members
- builtins.BaseException
- with_traceback
- args
Raised when deploying an Orchestration fails due to a backend issue.
Inherited Members
- builtins.BaseException
- with_traceback
- args