1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ecloud/models/compute/role.rb

25 lines
715 B
Ruby
Raw Normal View History

2012-06-07 12:50:11 -04:00
module Fog
module Compute
class Ecloud
class Role < Fog::Ecloud::Model
identity :href
attribute :name, :aliases => :Name
attribute :environment_name, :aliases => :EnvironmentName
attribute :type, :aliases => :Type
attribute :other_links, :aliases => :Links
attribute :role_type, :aliases => :RoleType
attribute :active, :aliases => :Active, :type => :boolean
attribute :category, :aliases => :Category
attribute :is_admin, :aliases => :IsAdmin, :type => :boolean
attribute :business_operations, :aliases => :BusinessOperations
def id
href.scan(/\d+/)[0]
end
end
end
end
end