1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.NetworkMethods import NetworkMethod, NetworkMethods
5 from PLC.Auth import Auth
7 class DeleteNetworkMethod(Method):
9 Deletes a network method.
11 WARNING: This will cause the deletion of all network interfaces
14 Returns 1 if successful, faults otherwise.
21 NetworkMethod.fields['method']
24 returns = Parameter(int, '1 if successful')
27 def call(self, auth, name):
28 network_methods = NetworkMethods(self.api, [name])
29 if not network_methods:
30 raise PLCInvalidArgument, "No such network method"
31 network_method = network_methods[0]
33 network_method.delete()