Class: Fog::Compute::Brightbox::FirewallPolicy
Instance Method Summary
collapse
#collection_name, #resource_name
Instance Method Details
#apply_to(server_group_id) ⇒ Object
34
35
36
37
38
39
40
41
42
|
# File 'lib/fog/brightbox/models/compute/firewall_policy.rb', line 34
def apply_to(server_group_id)
requires :identity
options = {
:server_group => server_group_id
}
data = service.apply_to_firewall_policy(identity, options)
merge_attributes(data)
true
end
|
#destroy ⇒ Object
54
55
56
57
58
|
# File 'lib/fog/brightbox/models/compute/firewall_policy.rb', line 54
def destroy
requires :identity
service.destroy_firewall_policy(identity)
true
end
|
#remove(server_group_id) ⇒ Object
44
45
46
47
48
49
50
51
52
|
# File 'lib/fog/brightbox/models/compute/firewall_policy.rb', line 44
def remove(server_group_id)
requires :identity
options = {
:server_group => server_group_id
}
data = service.remove_firewall_policy(identity, options)
merge_attributes(data)
true
end
|
#save ⇒ Object
Sticking with existing Fog behaviour, save does not update but creates a new resource
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/fog/brightbox/models/compute/firewall_policy.rb', line 22
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
options = {
:server_group => server_group_id,
:name => name,
:description => description
}.delete_if { |k, v| v.nil? || v == "" }
data = service.create_firewall_policy(options)
merge_attributes(data)
true
end
|