2010-07-01 13:58:15 +08:00
|
|
|
module Fog
|
2010-09-03 01:11:45 -07:00
|
|
|
class Vcloud
|
2010-07-01 13:58:15 +08:00
|
|
|
module Terremark
|
2010-09-14 10:40:02 -07:00
|
|
|
class Ecloud
|
2010-07-01 13:58:15 +08:00
|
|
|
class FirewallAcl < Fog::Vcloud::Model
|
|
|
|
|
2010-09-14 10:40:02 -07:00
|
|
|
identity :href, :aliases => :Href
|
2010-07-01 13:58:15 +08:00
|
|
|
|
|
|
|
ignore_attributes :xmlns, :xmlns_i
|
|
|
|
|
|
|
|
attribute :name, :aliases => :Name
|
|
|
|
attribute :id, :aliases => :Id
|
|
|
|
attribute :protocol, :aliases => :Protocol
|
|
|
|
attribute :source, :aliases => :Source
|
|
|
|
attribute :destination, :aliases => :Destination
|
|
|
|
attribute :permission, :aliases => :Permission
|
|
|
|
attribute :port_start, :aliases => :PortStart
|
|
|
|
attribute :port_end, :aliases => :PortEnd
|
|
|
|
attribute :port_type, :aliases => :PortType
|
|
|
|
attribute :type, :aliases => :Type
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|