def configRsvpTeLsps(self, ipv4Obj): """ Description Create new RSVP-TE LSPS Tunnel. A RSVP-TE interface is created automatically if there is no RSVR-TE configured. Parameter ipv4Obj: : /api/v1/sessions/1/ixnetwork/topology/1/deviceGroup/1/ethernet/1/ipv4/1 Syntax POST: /api/v1/sessions/{id}/ixnetwork/topology/{id}/deviceGroup/{id}/ethernet/{id}/ipv4/{id}/rsvpteLsps Return /api/v1/sessions/{id}/ixnetwork/topology/{id}/deviceGroup/{id}/ethernet/{id}/ipv4/{id}/rsvrteLsps/{id} """ self.ixnObj.logInfo('Creating new RSVP TE LSPS') response = self.ixnObj.post(self.ixnObj.httpHeader+ipv4Obj+'/rsvpteLsps') return response.json()['links'][0]['href']