aboutsummaryrefslogtreecommitdiffstats
path: root/onap-client/onap_client/sdc/vsp.py
diff options
context:
space:
mode:
Diffstat (limited to 'onap-client/onap_client/sdc/vsp.py')
-rw-r--r--onap-client/onap_client/sdc/vsp.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/onap-client/onap_client/sdc/vsp.py b/onap-client/onap_client/sdc/vsp.py
index 25b3170..c64af36 100644
--- a/onap-client/onap_client/sdc/vsp.py
+++ b/onap-client/onap_client/sdc/vsp.py
@@ -46,6 +46,7 @@ from onap_client.exceptions import ResourceAlreadyExistsException
class VSP(Resource):
resource_name = "VSP"
spec = {
+ "owner": {"type": str, "required": False, "default": ""},
"vendor_name": {"type": str, "required": True},
"license_model_name": {"type": str, "required": True},
"file_path": {"type": str, "required": True},
@@ -83,6 +84,7 @@ class VSP(Resource):
sub_category,
contributers=[],
allow_update=False,
+ owner="",
):
self.oc = Client()
vsp_input = {}
@@ -111,6 +113,7 @@ class VSP(Resource):
vsp_input["sub_category"] = sub_category.lower()
vsp_input["contributers"] = contributers
vsp_input["allow_update"] = allow_update
+ vsp_input["owner"] = owner
super().__init__(vsp_input)
@@ -138,6 +141,11 @@ class VSP(Resource):
user_id=contributer, software_product_id=self.software_product_id
)
+ if self.owner:
+ self.oc.sdc.vsp.modify_vsp_owner(
+ user_id=self.owner, software_product_id=self.software_product_id
+ )
+
def _submit(self):
"""Submits the vsp in SDC"""
self.oc.sdc.vsp.submit_software_product(**self.attributes, action="Submit")