This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/compute/ecloud/requests/internet_service_edit.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module Fog
  module Compute
    class Ecloud
      module Shared
        def validate_edit_internet_service_options(options)
          required_opts = [:name, :enabled, :persistence]
          unless required_opts.all? { |opt| options.key?(opt) }
            raise ArgumentError.new("Required data missing: #{(required_opts - options.keys).map(&:inspect).join(", ")}")
          end
          raise ArgumentError.new("Required data missing: #{:persistence[:type]}") unless options[:persistence][:type]
        end

        def build_node_service_body_edit(options)
          xml = Builder::XmlMarkup.new
          xml.InternetService(:name => options[:name]) do
            xml.Enabled options[:enabled]
            if options[:description]
              xml.Description options[:description]
            end
            xml.Persistence do
              xml.Type options[:persistence][:type]
              if options[:persistence][:timeout]
                xml.Timeout options[:persistence][:timeout]
              end
            end
            if options[:redirect_url]
              xml.RedirectUrl options[:redirect_url]
            end
            if options[:trusted_network_group]
              xml.TrustedNetworkGroup(:href => options[:trusted_network_group][:href], :name => service_data[:trusted_network_group][:name], :type => "application/vnd.tmrk.cloud.trustedNetworkGroup")
            end
            if options[:backup_internet_service]
              xml.BackupInternetService(:href => options[:backup_internet_service][:href], :name => service_data[:backup_internet_service][:name], :type => "application/vnd.tmrk.cloud.backupInternetService")
            end
            if options[:load_balancing_method]
              xml.LoadBalancingMethod options[:load_balancing_method]
            end
          end
        end
      end

      class Real
        def node_service_edit(options)
          validate_edit_node_service_options(options)
          body = build_node_service_body_edit(options)
          request(
            :expects => 202,
            :method => "PUT",
            :headers => {},
            :body => body,
            :uri => options[:uri],
            :parse => true
          )
        end
      end
    end
  end
end