Commit e3dca38f authored by rahulkumarr's avatar rahulkumarr Committed by garciadeblas
Browse files

Feature 10922: Stop, start and rebuild



Added support for feature start stop rebuild of VNF instances
Change-Id: Ica068b9a4716a7ccaf80d98a9665cc91f119b1ee
Signed-off-by: rahulkumarr's avatark4.rahul <rahul.k4@tataelxsi.co.in>
parent aa4f7127
Loading
Loading
Loading
Loading
Loading
+19 −1
Original line number Diff line number Diff line
@@ -449,7 +449,7 @@ ns_update = {
        "nsInstanceId": id_schema,
        "timeout_ns_update": integer1_schema,
        "updateType": {
            "enum": ["CHANGE_VNFPKG", "REMOVE_VNF", "MODIFY_VNF_INFORMATION"]
            "enum": ["CHANGE_VNFPKG", "REMOVE_VNF", "MODIFY_VNF_INFORMATION", "OPERATE_VNF"]
        },
        "modifyVnfInfoData": {
            "type": "object",
@@ -468,6 +468,24 @@ ns_update = {
            },
            "required": ["vnfInstanceId", "vnfdId"],
        },
        "operateVnfData": {
            "type": "object",
            "properties": {
                "vnfInstanceId": id_schema,
                "changeStateTo": name_schema,
                "additionalParam": {
                    "type": "object",
                    "properties": {
                        "run-day1": bool_schema,
                        "vdu_id": name_schema,
                        "count-index": integer0_schema,
                    },
                    "required": ["vdu_id", "count-index"],
                    "additionalProperties": False,
                }
            },
            "required": ["vnfInstanceId", "changeStateTo"],
        }
    },
    "required": ["updateType"],
    "additionalProperties": False,