2011-02-17 13:44:46 -05:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Ecloud
|
2011-02-17 13:44:46 -05:00
|
|
|
class FirewallAcl < Fog::Ecloud::Model
|
2012-06-07 12:50:11 -04:00
|
|
|
identity :href
|
2011-02-17 13:44:46 -05:00
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
attribute :type, :aliases => :Type
|
|
|
|
attribute :links, :aliases => :Links
|
|
|
|
attribute :permission, :aliases => :Permission
|
|
|
|
attribute :acl_type, :aliases => :AclType
|
|
|
|
attribute :port_type, :aliases => :PortType
|
2011-02-17 13:44:46 -05:00
|
|
|
attribute :protocol, :aliases => :Protocol
|
|
|
|
attribute :source, :aliases => :Source
|
|
|
|
attribute :destination, :aliases => :Destination
|
2012-06-07 12:50:11 -04:00
|
|
|
attribute :port_range, :aliases => :PortRange
|
|
|
|
|
|
|
|
def tasks
|
|
|
|
@tasks = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => "/cloudapi/ecloud/tasks/virtualMachines/#{id}")
|
|
|
|
end
|
2011-02-17 13:44:46 -05:00
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
def id
|
|
|
|
href.scan(/\d+/)[0]
|
|
|
|
end
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|