diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-03-03 09:57:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-03 09:57:30 +0000 |
commit | ae6a9829f0c572cb4789812ea65871132ec861fd (patch) | |
tree | 08b2a46011795685b1a165684f95d5a59867bc9e /src/test/resources | |
parent | 47caef3827de362e7b6204b01d73238fb6faa714 (diff) | |
parent | 492a5ddfdd09ce0a046a61abd6e76a69d9cf477a (diff) |
Merge "Rework the activate pdp group payload"
Diffstat (limited to 'src/test/resources')
-rw-r--r-- | src/test/resources/tosca/pdp-group-policy-payload.json | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/src/test/resources/tosca/pdp-group-policy-payload.json b/src/test/resources/tosca/pdp-group-policy-payload.json index ad3a5b4c..93a85457 100644 --- a/src/test/resources/tosca/pdp-group-policy-payload.json +++ b/src/test/resources/tosca/pdp-group-policy-payload.json @@ -1,16 +1,34 @@ { - "policies": [ + "groups": [ { - "policy-id": "GuardOpPolicyTest" + "name": "pdpGroup2", + "deploymentSubgroups": [ + { + "pdpType": "pdpSubgroup2", + "action": "POST", + "policies": [ + { + "name": "onap.policies.controlloop.Operational", + "version": "1.0.0" + } + ] + } + ] }, { - "policy-id": "guard.minmax.new" - }, - { - "policy-id": "guard.frequency.new" - }, - { - "policy-id": "configPolicyTest" + "name": "pdpGroup1", + "deploymentSubgroups": [ + { + "pdpType": "pdpSubgroup1", + "action": "POST", + "policies": [ + { + "name": "onap.policies.monitoring.test", + "version": "1.0.0" + } + ] + } + ] } ] }
\ No newline at end of file |