-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow.yaml
45 lines (43 loc) · 1.99 KB
/
workflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
openapi: 3.0.0
info:
title: Path calculation results using TOS
description: Path calculation results using TOS.
version: 1.0.0
paths:
/securechangeworkflow/ipc/securechange/workflows/active_workflows.json:
get:
operationId: ActiveWorkflowList
summary: Returns active workflow list defined in SecureChange.
description: |
Retrieve information of all active workflows.
#ExamplePrompts Returns active workflow list defined in SecureChange?
responses:
200:
description: OK
400:
description: <TYPE> is not a valid workflow type
/securechangeworkflow/ipc/securechange/workflows/active_workflows.json?type=ACCESS_REQUEST:
get:
operationId: AccessRequestWorkflows
summary: The Access-Request workflow can either allow or block traffic to a service from the source to the destination.
description: |
Retrieve a list of all the active Access-Request workflow.
#ExamplePrompts Show me active access request workflows?
#ExamplePrompts How could I use Tufin to request traffic be permitted?
responses:
200:
description: OK
400:
description: <TYPE> is not a valid workflow type
/securechangeworkflow/ipc/securechange/workflows/active_workflows.json?type=RULE_DECOMMISSION:
get:
operationId: RuleDecommissionWorkflows
summary: Rule decommission workflow list for mitigating security issues, such as disabling unused rules.
description: |
Retrieve a list of all the active Decommission workflow.
#ExamplePrompts Show me decommission workflows?
responses:
200:
description: OK
400:
description: <TYPE> is not a valid workflow type