Class: Fog::Compute::Cloudstack::PortForwardingRules
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Cloudstack::PortForwardingRules
- 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( = {}) response = service.list_port_forwarding_rules() 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) = { 'id' => address_id } response = service.list_port_forwarding_rules() port_forwarding_rules = response["listportforwardingrulesresponse"]["portforwardingrule"].first new(port_forwarding_rules) end |