# File lib/fog/profitbricks/models/compute/volume.rb, line 115
        def restore_snapshot(snapshot_id)
          requires :datacenter_id, :id

          options = {}
          options[:snapshot_id] = snapshot_id if snapshot_id

          service.restore_volume_snapshot(datacenter_id, id, options)
          true
        end