diff options
Diffstat (limited to 'csit/tests/data')
-rw-r--r-- | csit/tests/data/create.group.request.json | 37 | ||||
-rw-r--r-- | csit/tests/data/deploy.group.request.json | 19 |
2 files changed, 56 insertions, 0 deletions
diff --git a/csit/tests/data/create.group.request.json b/csit/tests/data/create.group.request.json new file mode 100644 index 00000000..1b63563f --- /dev/null +++ b/csit/tests/data/create.group.request.json @@ -0,0 +1,37 @@ +{ + "groups": [ + { + "name": "create.group.request", + "pdpGroupState": "PASSIVE", + "properties": { + "hello": "world" + }, + "pdpSubgroups": [ + { + "pdpType": "pdpTypeA", + "desiredInstanceCount": 2, + "properties": {}, + "supportedPolicyTypes": [ + { + "name": "onap.policies.monitoring.tcagen2", + "version": "1.0.0" + } + ], + "policies": [] + }, + { + "pdpType": "pdpTypeB", + "desiredInstanceCount": 1, + "properties": {}, + "supportedPolicyTypes": [ + { + "name": "onap.policies.monitoring.tcagen2", + "version": "1.0.0" + } + ], + "policies": [] + } + ] + } + ] +} diff --git a/csit/tests/data/deploy.group.request.json b/csit/tests/data/deploy.group.request.json new file mode 100644 index 00000000..7f3694de --- /dev/null +++ b/csit/tests/data/deploy.group.request.json @@ -0,0 +1,19 @@ +{ + "groups": [ + { + "name": "create.group.request", + "deploymentSubgroups": [ + { + "pdpType": "pdpTypeA", + "action": "POST", + "policies": [ + { + "name": "onap.restart.tca", + "version": "1.0.0" + } + ] + } + ] + } + ] +} |