1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[glesys] Remove unused features from template model

This commit is contained in:
Simon Gate 2013-02-10 13:34:41 +01:00
parent a5571f94cb
commit fbf82c71cb
2 changed files with 0 additions and 9 deletions

View file

@ -4,21 +4,13 @@ module Fog
module Compute
class Glesys
class Template < Fog::Model
extend Fog::Deprecation
identity :name
attribute :platform
attribute :operating_system, :aliases => "operatingsystem"
attribute :minimum_memory_size, :aliases => "minimummemorysize"
attribute :minimum_disk_size, :aliases => "minimumdisksize"
attribute :instance_cost, :aliases => "instancecost"
attribute :license_cost, :aliases => "licensecost"
def list
service.template_list
end
end
end
end

View file

@ -4,7 +4,6 @@ require 'fog/glesys/models/compute/template'
module Fog
module Compute
class Glesys
class Templates < Fog::Collection
model Fog::Compute::Glesys::Template