summaryrefslogtreecommitdiffstats
path: root/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/resources/org/onap/appc/validationpolicy/validation-policy.json
blob: 7ad1444ee0799ae3342b404e9a90b43101977b0b (plain)
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
46
47
48
49
50
51
52
53
54
{
    "request-validation-policies":
    [
      {
        "name" : "ActionInProgress",
        "rules":
        [
          {
            "action-received": "Audit",
            "validation-rule": "Reject",
            "in-progress-action-exclusion-list": [
              "HealthCheck",
              "Test",
              "CheckLock"
            ]
          },
		  {
            "action-received": "Start",
            "validation-rule": "Reject",
            "in-progress-action-inclusion-list": [
              "HealthCheck",
              "Test",
              "CheckLock"
            ]
          },
          {
            "action-received": "Sync",
            "validation-rule": "Accept",
            "in-progress-action-exclusion-list": [
              "HealthCheck",
              "Test",
              "CheckLock"
            ]
          },
		  {
            "action-received": "Stop",
            "validation-rule": "Accept",
            "in-progress-action-inclusion-list": [
              "HealthCheck",
              "Test",
              "CheckLock"
            ]
          },
          {
            "action-received": "Default",
            "validation-rule": "Reject",
            "in-progress-action-exclusion-list": [
              "CheckLock"
            ]
          }
        ]
      }
    ]
}