1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudstack/models/compute/egress_firewall_rule.rb

38 lines
1.2 KiB
Ruby

module Fog
module Compute
class Cloudstack
class EgressFirewallRule < Fog::Model
identity :id, :aliases => 'id'
attribute :protocol, :aliases => 'protocol'
attribute :network_id, :aliases => 'networkid'
attribute :state, :aliases => 'state'
attribute :cidr_list, :aliases => 'cidrlist'
attribute :tags, :type => :array
attribute :job_id, :aliases => 'jobid' # only on create
def save
requires :protocol, :network_id
options = {
'protocol' => protocol,
'networkid' => network_id,
'cidrlist' => cidr_list,
}
response = service.create_egress_firewall_rule(options)
merge_attributes(response['createegressfirewallruleresponse'])
end
def destroy
requires :id
response = service.delete_egress_firewall_rule('id' => id )
success_status = response['deleteegressfirewallruleresponse']['success']
success_status == 'true'
end
end
end
end
end