# File lib/fog/aws/models/compute/internet_gateway.rb, line 13 def initialize(attributes={}) super end
Create an internet gateway
>> g = AWS.internet_gateways.new() >> g.save
requestId and a internetGateway object
# File lib/fog/aws/models/compute/internet_gateway.rb, line 70 def save data = connection.create_internet_gateway.body['internetGatewaySet'].first new_attributes = data.reject {|key,value| key == 'requestId'} merge_attributes(new_attributes) true true end