Пример #1
0
 def vIP_del(self, vIP):
     '''
     Delete a virtual IP address
     @param vIP: The IP Address of the Endpoint
     @type vIP: IPAddressLocation
     '''
     if vIP is not None:
         try:
             del self.vIP_set[vIP.ip_value]
             Domain.endpoint_vIP_del(self.domain, vIP)
             DVG.endpoint_vIP_del(self.dvg, vIP)
             del self.vIP_set_show[vIP.ip_value]
         except Exception:
             pass