# File lib/fog/network/openstack/models/floating_ip.rb, line 39
        def associate(port_id, fixed_ip_address = nil)
          requires :id
          merge_attributes(service.associate_floating_ip(
            id,
            port_id,
            options(fixed_ip_address)
          ).body['floatingip'])
        end