aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/simulator/presetGenerator/presets/mso/configuration/PresetMSOActOnConfiguration.java
blob: 6c4b722d673f537a2f8d9fb94090873684fc37f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package org.onap.simulator.presetGenerator.presets.mso.configuration;

import org.onap.simulator.presetGenerator.presets.mso.PresetMSOBaseCreateInstancePost;

public class PresetMSOActOnConfiguration extends PresetMSOBaseCreateInstancePost {

    private final String action;

    public PresetMSOActOnConfiguration(String action) {
        this.action = action;
        this.cloudOwner = "att-nc";
    }

    public PresetMSOActOnConfiguration(String action, String requestId, String responseInstanceId) {
        super(requestId, responseInstanceId);
        this.action = action;
        this.cloudOwner = "att-nc";
    }


    @Override
    public boolean isStrictMatch() {
        return true;
    }

    @Override
    public String getReqPath() {
        return getRootPath() + "/serviceInstances/v./c187e9fe-40c3-4862-b73e-84ff056205f6/configurations/9533-config-LB1113/" + action;
    }

    @Override
    public Object getRequestBody() {
        return "" +
                "{" +
                "  \"requestDetails\": {" +
                "    \"modelInfo\": {" +
                "      \"modelType\": \"configuration\"," +
                "      \"modelInvariantId\": \"model-invariant-id-9533\"," +
                "      \"modelVersionId\": \"model-version-id-9533\"," +
                "      \"modelCustomizationId\": \"08a181aa-72eb-435f-9593-e88a3ad0a86b\"" +
                "    }," +
                "    \"cloudConfiguration\": {" +
                addCloudOwnerIfNeeded() +
                "      \"lcpCloudRegionId\": \"mdt1\"," +
                "    }," +
                "    \"requestInfo\": {" +
                "      \"source\": \"VID\"," +
                "      \"requestorId\": \"us16807000\"" +
                "    }," +
                "    \"relatedInstanceList\": [{" +
                "        \"relatedInstance\": {" +
                "          \"instanceId\": \"c187e9fe-40c3-4862-b73e-84ff056205f6\"," +
                "          \"modelInfo\": {" +
                "            \"modelType\": \"service\"," +
                "            \"modelInvariantId\": \"b7d923c9-6175-41f1-91ba-4565c4953408\"," +
                "            \"modelVersionId\": \"ee6d61be-4841-4f98-8f23-5de9da846ca7\"," +
                "            \"modelName\": \"ServiceContainerMultiplepProbes\"," +
                "            \"modelVersion\": \"1.0\"" +
                "          }" +
                "        }" +
                "      }" +
                "    ]," +
                "    \"requestParameters\": {" +
                "      \"userParams\": []" +
                "    }" +
                "  }" +
                "}";
    }

}