This file is indexed.

/usr/lib/ruby/vendor_ruby/generated/azure_mgmt_mobile_engagement/models/device_info.rb is in ruby-azure-mgmt-mobile-engagement 0.8.0-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
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# encoding: utf-8
# Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.

module Azure::ARM::MobileEngagement
  module Models
    #
    # Model object.
    # 
    #
    class DeviceInfo

      include MsRestAzure

      # @return [String] Phone model.
      attr_accessor :phone_model

      # @return [String] Phone manufacturer
      attr_accessor :phone_manufacturer

      # @return [String] Firmware version.
      attr_accessor :firmware_version

      # @return [String] Firmware name.
      attr_accessor :firmware_name

      # @return [Integer] Android API level.
      attr_accessor :android_apilevel

      # @return [String] Carrier country.
      attr_accessor :carrier_country

      # @return [String] Locale code.
      attr_accessor :locale

      # @return [String] Carrier name.
      attr_accessor :carrier_name

      # @return [String] Network type.
      attr_accessor :network_type

      # @return [String] Network sub-type.
      attr_accessor :network_subtype

      # @return [String] Application version name.
      attr_accessor :application_version_name

      # @return [Integer] Application version code.
      attr_accessor :application_version_code

      # @return [Integer] The offset in minutes from UTC for the device time
      # zone, including daylight savings time.
      attr_accessor :time_zone_offset

      # @return [String] SDK version.
      attr_accessor :service_version


      #
      # Mapper for DeviceInfo class as Ruby Hash.
      # This will be used for serialization/deserialization.
      #
      def self.mapper()
        {
          required: false,
          serialized_name: 'DeviceInfo',
          type: {
            name: 'Composite',
            class_name: 'DeviceInfo',
            model_properties: {
              phone_model: {
                required: false,
                serialized_name: 'phoneModel',
                type: {
                  name: 'String'
                }
              },
              phone_manufacturer: {
                required: false,
                serialized_name: 'phoneManufacturer',
                type: {
                  name: 'String'
                }
              },
              firmware_version: {
                required: false,
                serialized_name: 'firmwareVersion',
                type: {
                  name: 'String'
                }
              },
              firmware_name: {
                required: false,
                serialized_name: 'firmwareName',
                type: {
                  name: 'String'
                }
              },
              android_apilevel: {
                required: false,
                serialized_name: 'androidAPILevel',
                type: {
                  name: 'Number'
                }
              },
              carrier_country: {
                required: false,
                serialized_name: 'carrierCountry',
                type: {
                  name: 'String'
                }
              },
              locale: {
                required: false,
                serialized_name: 'locale',
                type: {
                  name: 'String'
                }
              },
              carrier_name: {
                required: false,
                serialized_name: 'carrierName',
                type: {
                  name: 'String'
                }
              },
              network_type: {
                required: false,
                serialized_name: 'networkType',
                type: {
                  name: 'String'
                }
              },
              network_subtype: {
                required: false,
                serialized_name: 'networkSubtype',
                type: {
                  name: 'String'
                }
              },
              application_version_name: {
                required: false,
                serialized_name: 'applicationVersionName',
                type: {
                  name: 'String'
                }
              },
              application_version_code: {
                required: false,
                serialized_name: 'applicationVersionCode',
                type: {
                  name: 'Number'
                }
              },
              time_zone_offset: {
                required: false,
                serialized_name: 'timeZoneOffset',
                type: {
                  name: 'Number'
                }
              },
              service_version: {
                required: false,
                serialized_name: 'serviceVersion',
                type: {
                  name: 'String'
                }
              }
            }
          }
        }
      end
    end
  end
end