# File lib/fog/rackspace/models/compute_v2/images.rb, line 42
        def all(options = {})
          options = {
            'name'          => name,
            'status'        => status,
            'marker'        => marker,
            'limit'         => limit,
            'type'          => type
          }.merge!(options)
          merge_attributes(options)

          data = service.list_images_detail(options).body['images']
          load(data)
        end