# File lib/fog/aws/requests/compute/describe_subnets.rb, line 46
        def describe_subnets(filters = {})
          Excon::Response.new.tap do |response|
            response.status = 200
            response.body = {
              'requestId'  => Fog::AWS::Mock.request_id,
              'subnetSet'  => self.data[:subnets]
            }
          end
        end