X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=rwcal%2Fplugins%2Fvala%2Frwcal_vsphere%2Frwcal_vsphere.py;h=b3f560b51fcd9552d9512a2acb2ea860e7d1a785;hb=refs%2Fchanges%2F77%2F5477%2F1;hp=2dcbd8c487da3e61dc429e95431750e8650651ab;hpb=6f1a3fe149e4a6b9803382cb299c902f4cf58ec9;p=osm%2FSO.git diff --git a/rwcal/plugins/vala/rwcal_vsphere/rwcal_vsphere.py b/rwcal/plugins/vala/rwcal_vsphere/rwcal_vsphere.py index 2dcbd8c4..b3f560b5 100644 --- a/rwcal/plugins/vala/rwcal_vsphere/rwcal_vsphere.py +++ b/rwcal/plugins/vala/rwcal_vsphere/rwcal_vsphere.py @@ -212,6 +212,10 @@ class RwcalVspherePlugin(GObject.Object, RwCal.Cloud): @rwstatus(ret_on_failure=[None]) def do_get_virtual_link(self, account, link_id): raise NotImplementedError() + + @rwstatus(ret_on_failure=[None]) + def do_get_virtual_link_by_name(self, account, link_name): + raise NotImplementedError() @rwstatus(ret_on_failure=[""]) def do_get_virtual_link_list(self, account): @@ -229,10 +233,12 @@ class RwcalVspherePlugin(GObject.Object, RwCal.Cloud): def do_delete_vdu(self, account, vdu_id): raise NotImplementedError() - @rwstatus(ret_on_failure=[None]) - def do_get_vdu(self, account, vdu_id): + @rwcalstatus(ret_on_failure=[None]) + def do_get_vdu(self, account, vdu_id, mgmt_network): + # mgmt_network - Added due to need for mgmt network. + # TO DO: Investigate the need for aws. raise NotImplementedError() - @rwstatus(ret_on_failure=[""]) + @rwcalstatus(ret_on_failure=[None]) def do_get_vdu_list(self, account): raise NotImplementedError()