# File lib/fog/aws/requests/compute/create_internet_gateway.rb, line 35
        def create_internet_gateway()
        self.data[:internet_gateways].push({
          'internetGatewayId' => Fog::AWS::Mock.request_id,
          'attachmentSet'     => {},
          'tagSet'            => {}
        })
         Excon::Response.new(
            :status => 200,
            :body   => {
              'requestId' => Fog::AWS::Mock.request_id,
              'internetGatewaySet' => self.data[:internet_gateways]
            }
          )
        end