This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/compute/ecloud/requests/monitors_create_ping.rb is in ruby-fog-ecloud 0.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module Fog
  module Compute
    class Ecloud
      class Real
        include Shared

        def monitors_create_ping(data)
          validate_data([:interval, :response_timeout, :retries, :downtime, :enabled], data)

          request(
            :body => generate_ping_monitor_request(data),
            :expects => 201,
            :method => "POST",
            :headers => {},
            :uri => data[:uri],
            :parse => true
          )
        end

        private

        def generate_ping_monitor_request(data)
          xml = Builder::XmlMarkup.new
          xml.CreatePingMonitor do
            xml.Interval data[:interval]
            xml.ResponseTimeout data[:response_timeout]
            xml.Retries data[:retries]
            xml.Downtime data[:downtime]
            xml.Enabled data[:enabled]
          end
        end
      end
    end
  end
end