diff options
author | jrh3 <jrh3@att.com> | 2019-06-20 14:57:50 -0400 |
---|---|---|
committer | jrh3 <jrh3@att.com> | 2019-06-20 16:12:30 -0400 |
commit | b346fda03f450ccf9f8adb143f872cfce6ba76a8 (patch) | |
tree | 5dc6167e8a8bf143dd92d24682e587fd47ef5f2d /main/src/test/resources/simpleDeploy/createGroupsVersPrefix.json | |
parent | 82cc7e0ccf799e0ea5d9afd033a3cff88468b6bf (diff) |
Allow integer version when using PDP Group Deploy
The policies listed in a "PDP Group Deploy" request may not have
fully qualified versions. Modified the code to replace the versions
in the request with fully qualified versions.
Also improved performance by avoiding look-ups of policies that
are already in the subgroup.
Change-Id: I37899c2b45228b97a80b7ef44f69694ba57e8f4a
Issue-ID: POLICY-1784
Signed-off-by: jrh3 <jrh3@att.com>
Diffstat (limited to 'main/src/test/resources/simpleDeploy/createGroupsVersPrefix.json')
-rw-r--r-- | main/src/test/resources/simpleDeploy/createGroupsVersPrefix.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/main/src/test/resources/simpleDeploy/createGroupsVersPrefix.json b/main/src/test/resources/simpleDeploy/createGroupsVersPrefix.json new file mode 100644 index 00000000..e53d927d --- /dev/null +++ b/main/src/test/resources/simpleDeploy/createGroupsVersPrefix.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" + } + ] + } + ] + } + ] +} |