30 lines
686 B
Python
30 lines
686 B
Python
"""
|
|
Views for Automation & Orchestration module
|
|
"""
|
|
|
|
from .automation import (
|
|
RunbookViewSet,
|
|
RunbookExecutionViewSet,
|
|
IntegrationViewSet,
|
|
ChatOpsIntegrationViewSet,
|
|
ChatOpsCommandViewSet,
|
|
AutoRemediationViewSet,
|
|
AutoRemediationExecutionViewSet,
|
|
MaintenanceWindowViewSet,
|
|
WorkflowTemplateViewSet,
|
|
WorkflowExecutionViewSet,
|
|
)
|
|
|
|
__all__ = [
|
|
'RunbookViewSet',
|
|
'RunbookExecutionViewSet',
|
|
'IntegrationViewSet',
|
|
'ChatOpsIntegrationViewSet',
|
|
'ChatOpsCommandViewSet',
|
|
'AutoRemediationViewSet',
|
|
'AutoRemediationExecutionViewSet',
|
|
'MaintenanceWindowViewSet',
|
|
'WorkflowTemplateViewSet',
|
|
'WorkflowExecutionViewSet',
|
|
]
|