diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2022-02-10 14:35:12 -0500 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2022-02-10 14:35:17 -0500 |
commit | f5fda6421dad76d369774c59e89a448a6c4e8c07 (patch) | |
tree | d0636eee32fb0fcd383ada1488ae6cba2bcefac1 /main/src/test/resources/e2e | |
parent | 873803eca00830dc3ecb61e610d90710f64a8242 (diff) |
Add yaml support to pap api's
Adding yaml support to pap rest api's.
Along with related unit tests.
Issue-ID: POLICY-3864
Change-Id: I43bdbbd4151bcae5dcf4752a9385b115efa947d3
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
Diffstat (limited to 'main/src/test/resources/e2e')
-rw-r--r-- | main/src/test/resources/e2e/createGroups.yaml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/main/src/test/resources/e2e/createGroups.yaml b/main/src/test/resources/e2e/createGroups.yaml new file mode 100644 index 00000000..fc98e971 --- /dev/null +++ b/main/src/test/resources/e2e/createGroups.yaml @@ -0,0 +1,31 @@ +groups: + - name: createGroups + pdpGroupState: PASSIVE + properties: + hello: world + pdpSubgroups: + - pdpType: pdpTypeA + desiredInstanceCount: 2 + properties: {} + pdpInstances: + - instanceId: pdpAA_1 + pdpState: ACTIVE + healthy: HEALTHY + - instanceId: pdpAA_2 + pdpState: ACTIVE + healthy: HEALTHY + supportedPolicyTypes: + - name: onap.policies.monitoring.cdap.tca.hi.lo.app + version: 1.0.0 + policies: [] + - pdpType: pdpTypeB + desiredInstanceCount: 1 + properties: {} + pdpInstances: + - instanceId: pdpAB_1 + pdpState: ACTIVE + healthy: HEALTHY + supportedPolicyTypes: + - name: onap.policies.monitoring.cdap.tca.hi.lo.app + version: 1.0.0 + policies: [] |