Class: Fog::Compute::Brightbox::FirewallRule
- Defined in:
- lib/fog/brightbox/models/compute/firewall_rule.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
- #destroy ⇒ Object
-
#save ⇒ Object
Sticking with existing Fog behaviour, save does not update but creates a new resource.
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
44 45 46 47 48 |
# File 'lib/fog/brightbox/models/compute/firewall_rule.rb', line 44 def destroy requires :identity connection.destroy_firewall_rule(identity) true end |
#save ⇒ Object
Sticking with existing Fog behaviour, save does not update but creates a new resource
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fog/brightbox/models/compute/firewall_rule.rb', line 26 def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity requires :firewall_policy_id = { :firewall_policy => firewall_policy_id, :protocol => protocol, :description => description, :source => source, :source_port => source_port, :destination => destination, :destination_port => destination_port, :icmp_type_name => icmp_type_name }.delete_if {|k,v| v.nil? || v == "" } data = connection.create_firewall_rule() merge_attributes(data) true end |