diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-12-10 14:28:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-10 14:28:33 +0000 |
commit | d97629ff8ec522d30d1f552201496182c72559ab (patch) | |
tree | 5c8b14c99aca96471ce88a530615620836836044 /main/src/test/resources/simpleDeploy/deployGroups.json | |
parent | e040acb6d41207ba3df631bffb5ffe3312283aec (diff) | |
parent | 73aaafa0ab601533d5cdbd839055cb7b5f9bb6ec (diff) |
Merge "Only update policies in PAP REST API"
Diffstat (limited to 'main/src/test/resources/simpleDeploy/deployGroups.json')
-rw-r--r-- | main/src/test/resources/simpleDeploy/deployGroups.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/main/src/test/resources/simpleDeploy/deployGroups.json b/main/src/test/resources/simpleDeploy/deployGroups.json new file mode 100644 index 00000000..59c4eb87 --- /dev/null +++ b/main/src/test/resources/simpleDeploy/deployGroups.json @@ -0,0 +1,39 @@ +{ + "groups": [ + { + "name": "groupA", + "version": "200.2.3", + "description": "my description", + "pdpGroupState": "ACTIVE", + "properties": { + "hello": "world" + }, + "pdpSubgroups": [ + { + "pdpType": "pdpTypeA", + "desiredInstanceCount": 1, + "properties": { + "abc": "def" + }, + "supportedPolicyTypes": [ + { + "name": "typeA", + "version": "100.2.3" + } + ], + "pdpInstances": [ + { + "instanceId": "pdpA" + } + ], + "policies": [ + { + "name": "policyA", + "version": "1.2.3" + } + ] + } + ] + } + ] +} |