diff --git a/lib/fog/serverlove/models/compute/drive.rb b/lib/fog/serverlove/models/compute/drive.rb deleted file mode 100644 index b9fab6574..000000000 --- a/lib/fog/serverlove/models/compute/drive.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'fog/core/model' - -module Fog - module Compute - class Serverlove - - class Drive < Fog::Model - - identity :drive - - attribute :name - attribute :user - attribute :size - attribute :claimed - attribute :status - attribute :encryption_cipher, :aliases => 'encryption:cipher' - - def save - - end - - def destroy - requires :identity - connection.destroy_drive(identity) - self - end - - def self.create(args) - - end - end - end - end -end