from PLC.Faults import * from PLC.Method import Method from PLC.Parameter import Parameter, Mixed from PLC.AddressTypes import AddressType, AddressTypes from PLC.Auth import Auth can_update = lambda field_value: field_value[0] not in ['address_type_id'] class AddAddressType(Method): """ Adds a new address type. Fields specified in address_type_fields are used. Returns the new address_type_id (> 0) if successful, faults otherwise. """ roles = ['admin'] address_type_fields = dict(list(filter(can_update, list(AddressType.fields.items())))) accepts = [ Auth(), address_type_fields ] returns = Parameter(int, 'New address_type_id (> 0) if successful') def call(self, auth, address_type_fields): address_type_fields = dict(list(filter(can_update, list(address_type_fields.items())))) address_type = AddressType(self.api, address_type_fields) address_type.sync() self.event_objects = {'AddressType' : [address_type['address_type_id']]} return address_type['address_type_id']