Sha256: 8976fa597bd0c15596e9efb3127131638bc870a7465cad600944fb5252759dc6
Contents?: true
Size: 493 Bytes
Versions: 114
Compression:
Stored size: 493 Bytes
Contents
module Awspec::Type class InternetGateway < ResourceBase aws_resource Aws::EC2::InternetGateway tags_allowed def resource_via_client @resource_via_client ||= find_internet_gateway(@display_name) end def id @id ||= resource_via_client.internet_gateway_id if resource_via_client end def attached_to?(vpc) resource_via_client.attachments.find do |a| a.vpc_id == find_vpc(vpc).vpc_id && a.state == 'available' end end end end
Version data entries
114 entries across 114 versions & 4 rubygems