Sha256: b0a09b4e508f6c40281d8a3bc3f047084f75345fc0fca632054df1d63fdc846f
Contents?: true
Size: 1.62 KB
Versions: 9
Compression:
Stored size: 1.62 KB
Contents
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"). You # may not use this file except in compliance with the License. A copy of # the License is located at # # http://aws.amazon.com/apache2.0/ # # or in the "license" file accompanying this file. This file is # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific # language governing permissions and limitations under the License. require 'aws/model' module AWS class EC2 class SecurityGroup < Resource class IpPermissionCollection include Model include Enumerable attr_reader :security_group def initialize(security_group, opts = {}) super @security_group = security_group end def each security_group.ip_permissions_list.each do |p| groups = p.groups.collect do |group| SecurityGroup.new(group.group_id, :name => group.group_name, :owner_id => group.user_id, :config => config) end ip_ranges = p.ip_ranges.collect{|ip| ip.cidr_ip } permission = IpPermission.new(self, p.ip_protocol, [p.from_port, p.to_port], :ip_ranges => ip_ranges, :groups => groups, :config => config) yield(permission) end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems