mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
36 lines
916 B
Ruby
36 lines
916 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/hp/models/network/security_group_rule'
|
|
|
|
module Fog
|
|
module HP
|
|
class Network
|
|
|
|
class SecurityGroupRules < Fog::Collection
|
|
|
|
attribute :filters
|
|
|
|
model Fog::HP::Network::SecurityGroupRule
|
|
|
|
def initialize(attributes)
|
|
self.filters ||= {}
|
|
super
|
|
end
|
|
|
|
def all(filters = filters)
|
|
self.filters = filters
|
|
non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters)
|
|
load(service.list_security_group_rules(non_aliased_filters).body['security_group_rules'])
|
|
end
|
|
|
|
def get(sec_group_rule_id)
|
|
if sec_group_rule = service.get_security_group_rule(sec_group_rule_id).body['security_group_rule']
|
|
new(sec_group_rule)
|
|
end
|
|
rescue Fog::HP::Network::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|