diff options
author | Jim Hahn <jrh3@att.com> | 2019-12-03 13:07:57 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-12-09 10:41:02 -0500 |
commit | 73aaafa0ab601533d5cdbd839055cb7b5f9bb6ec (patch) | |
tree | e72d1123aee0f7408eccfdda523c1418e6d5df79 /main/src/test/resources/e2e/deployGroupsReq.json | |
parent | df7ccc04c86aa4b93c6f24b1e83d54c6a10fcc64 (diff) |
Only update policies in PAP REST API
Modified the deploy controller and provider to only update the
policies within a group, while leaving the other fields unchanged.
Added delta operations so that only additions or deletions need
be included instead of providing the complete list of policies.
Change-Id: Id2b69dac15f97b8a898f459f8d3f09216fc3618e
Issue-ID: POLICY-2274
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'main/src/test/resources/e2e/deployGroupsReq.json')
-rw-r--r-- | main/src/test/resources/e2e/deployGroupsReq.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/main/src/test/resources/e2e/deployGroupsReq.json b/main/src/test/resources/e2e/deployGroupsReq.json new file mode 100644 index 00000000..2e397d1d --- /dev/null +++ b/main/src/test/resources/e2e/deployGroupsReq.json @@ -0,0 +1,24 @@ +{ + "groups": [ + { + "name": "deployGroups", + "deploymentSubgroups": [ + { + "pdpType": "pdpTypeA", + "action": "PATCH", + "policies": [ + { + "name": "onap.restart.tca", + "version": "1.0.0" + } + ] + }, + { + "pdpType": "pdpTypeB", + "action": "PATCH", + "policies": [] + } + ] + } + ] +} |