This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/compute/ecloud/requests/internet_service_delete.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
module Fog
  module Compute
    class Ecloud
      class Real
        basic_request :internet_service_delete, 202, "DELETE"
      end

      class Mock
        def internet_service_delete(uri)
          service_id = id_from_uri(uri)

          service = self.data[:internet_services][service_id].dup
          self.data[:internet_services].delete(service_id)

          task_id = Fog::Mock.random_numbers(10).to_i
          task = {
            :id            => task_id,
            :href          => "/cloudapi/ecloud/tasks/#{task_id}",
            :type          => "application/vnd.tmrk.cloud.task",
            :Operation     => "Delete Service",
            :Status        => "Complete",
            :ImpactedItem  => Fog::Ecloud.keep(service, :name, :href, :type),
            :StartTime     => Time.now.iso8601,
            :CompletedTime => Time.now.iso8601,
            :InitiatedBy   => {},
          }
          self.data[:tasks][task_id] = task
          response(:body => task)
        end
      end
    end
  end
end