# File lib/fog/baremetal/openstack/models/port.rb, line 24
        def update(patch = nil)
          requires :uuid, :address, :node_uuid
          if patch
            merge_attributes(service.patch_port(uuid, patch).body)
          else
            # TODO: implement update_node method using PUT method and self.attributes
            # once it is supported by Ironic
            raise ArgumentError,
                  'You need to provide patch attribute. Ironic does not support update by hash yet, only by jsonpatch.'
          end
          self
        end