Class: Fog::Cloudstack::Compute::PortForwardingRules

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/cloudstack/models/compute/port_forwarding_rules.rb

Instance Method Summary collapse

Instance Method Details

#all(options = {}) ⇒ Object



10
11
12
13
14
# File 'lib/fog/cloudstack/models/compute/port_forwarding_rules.rb', line 10

def all(options = {})
  response = service.list_port_forwarding_rules(options)
  port_forwarding_rules = response["listportforwardingrulesresponse"]["portforwardingrule"] || []
  load(port_forwarding_rules)
end

#get(address_id) ⇒ Object



16
17
18
19
20
21
# File 'lib/fog/cloudstack/models/compute/port_forwarding_rules.rb', line 16

def get(address_id)
  options = { 'id' => address_id }
  response = service.list_port_forwarding_rules(options)
  port_forwarding_rules = response["listportforwardingrulesresponse"]["portforwardingrule"].first
  new(port_forwarding_rules)
end