This file is indexed.

/usr/lib/ruby/vendor_ruby/ms_rest_azure/sub_resource.rb is in ruby-ms-rest-azure 0.6.2-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
# encoding: utf-8
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.

module MsRestAzure
  #
  # Class which represents any Azure subresource.
  #
  class SubResource

    # @return [String] the id of the subresource.
    attr_accessor :id

    def self.mapper
      {
        required: false,
        serialized_name: 'SubResource',
        type: {
          name: 'Composite',
          class_name: 'SubResource',
          model_properties: {
            id: {
              required: false,
              serialized_name: 'id',
              type: {
                name: 'String'
              }
            }
          }
        }
      }
    end
  end
end