# File lib/fog/ibm/models/compute/address.rb, line 38
        def save
          requires :offering_id, :location
          data = service.create_address(location, offering_id,
                                           :vlan_id => vlan_id,
                                           :ip => ip)
          merge_attributes(data.body)
          true
        end