This repository has been archived on 2023-10-03. You can view files and clone it, but cannot push or open issues or pull requests.

14 lines
331 B
Python
Raw Normal View History

from pillarsdk.resource import List, Find, Create
class Manager(List, Find):
"""Manager class wrapping the REST nodes endpoint"""
path = 'flamenco/managers'
class Job(List, Find, Create):
"""Job class wrapping the REST nodes endpoint
"""
path = 'flamenco/jobs'
ensure_query_projections = {'project': 1}