mirror of
https://github.com/ansible/awx.git
synced 2026-03-10 14:09:28 -02:30
25 lines
420 B
Python
25 lines
420 B
Python
from awxkit.api.pages import UnifiedJob
|
|
from awxkit.api.resources import resources
|
|
from . import page
|
|
|
|
|
|
class SystemJob(UnifiedJob):
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_job, SystemJob)
|
|
|
|
|
|
class SystemJobs(page.PageList, SystemJob):
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_jobs, SystemJobs)
|
|
|
|
|
|
class SystemJobCancel(UnifiedJob):
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_job_cancel, SystemJobCancel)
|