# File lib/fog/baremetal/openstack/requests/create_port.rb, line 11
        def create_port(attributes)
          desired_options = [
            :address,
            :extra,
            :node_uuid
          ]

          # Filter only allowed creation attributes
          data = attributes.select { |key, _value| desired_options.include?(key.to_sym) }

          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 201],
            :method  => 'POST',
            :path    => 'ports'
          )
        end