# 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'  => [
                'subnetId'                 => Fog::AWS::Mock.request_id,
                'state'                    => 'pending',
                'vpcId'                    => Fog::AWS::Mock.request_id,
                'cidrBlock'                => '10.255.255.0/24',
                'availableIpAddressCount'  => 255,
                'availabilityZone'         => 'us-east-1c',
                'tagSet'                   => {}
              ]
            }
          end
        end