Bases: builtins.object
Class simplifying discovery of various PlainBox objects.
Get a tree of PlainBoxObject that represents everything that PlainBox knows about.
Returns: | A PlainBoxObject that represents the explorer object itself, along with all the children reachable from it. |
---|
This function computes the following set of data:
the explorer itself
- all providers
- all jobs
- all whitelists
- all executables
- all repositories
- all storages
Bases: builtins.object
A thin wrapper around some other plainbox object.
A mapping of key-value attributes that this object has
This mapping is mutable and is always guaranteed to exist.
A list of children that this object has
This list is mutable and is always guaranteed to exist.
Bases: builtins.object
Job primed for execution.
Bases: builtins.object
Prime the specified job for running.
The job will be invoked in a context specific to the session. The configuration object associated with this service instance might be used to fetch any additional configuration data for certain jobs (environment variables)
Returns: | a primed job, ready to be started |
---|