This file is indexed.

/usr/lib/ruby/vendor_ruby/generated/azure_mgmt_mobile_engagement/models/campaign_statistics_result.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# 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 CampaignStatisticsResult

      include MsRestAzure

      # @return [Integer] Number of times the campaign was registered to be
      # pushed.
      attr_accessor :queued

      # @return [Integer] Number of pushes performed.
      attr_accessor :pushed

      # @return [Integer] Total number of native pushes. Information only
      # available on Android, iOS, Windows Phone and Windows applications.
      attr_accessor :pushed_native

      # @return [Integer] Number of C2DM/GCM pushes (available only on Android
      # applications).
      attr_accessor :pushed_native_google

      # @return [Integer] Number of ADM pushes (available only on Android
      # applications).
      attr_accessor :pushed_native_adm

      # @return [Integer] Number of times the campaign was received by the
      # application (Not present in case of a native-push).
      attr_accessor :delivered

      # @return [Integer] Number of times the campaign was dropped by the
      # application. It can happen if the SDK failed to parse the campaign
      # payload or if an error occurred while trying to notify the end-user
      # (Not present in case of a native-push).
      attr_accessor :dropped

      # @return [Integer] Number of times the system notification was displayed
      # (Not present in case of a data-push or a native-push). On Android it
      # corresponds to a status bar notification.
      attr_accessor :system_notification_displayed

      # @return [Integer] Number of times the in-app notification was displayed
      # (Not present in case of a data-push or a native-push).
      attr_accessor :in_app_notification_displayed

      # @return [Integer] Number of times the campaign’s content view was
      # displayed (Not present in case of a notification-only announcement, a
      # data-push or a native-push).
      attr_accessor :content_displayed

      # @return [Integer] Number of times the system notification (On Android
      # it corresponds to a status bar notification. On iOS, it is the Apple
      # Push notification) was actioned.
      attr_accessor :system_notification_actioned

      # @return [Integer] Number of times the system notification was exited
      # (Not present in case of a data-push or a native-push).
      attr_accessor :system_notification_exited

      # @return [Integer] Number of times the in-app notification was actioned
      # (Not present in case of a data-push or a native-push).
      attr_accessor :in_app_notification_actioned

      # @return [Integer] Number of times the in-app notification was exited
      # (Not present in case of a data-push or a native-push).
      attr_accessor :in_app_notification_exited

      # @return [Integer] Number of times the campaign’s content view was
      # actioned (Not present in case of a notification-only announcement or a
      # native-push).
      attr_accessor :content_actioned

      # @return [Integer] Number of times the campaign’s content view was
      # exited (Not present in case of a notification-only announcement or a
      # native-push).
      attr_accessor :content_exited

      # @return Poll specific statistics.
      attr_accessor :answers


      #
      # Mapper for CampaignStatisticsResult class as Ruby Hash.
      # This will be used for serialization/deserialization.
      #
      def self.mapper()
        {
          required: false,
          serialized_name: 'CampaignStatisticsResult',
          type: {
            name: 'Composite',
            class_name: 'CampaignStatisticsResult',
            model_properties: {
              queued: {
                required: false,
                serialized_name: 'queued',
                type: {
                  name: 'Number'
                }
              },
              pushed: {
                required: false,
                serialized_name: 'pushed',
                type: {
                  name: 'Number'
                }
              },
              pushed_native: {
                required: false,
                serialized_name: 'pushed-native',
                type: {
                  name: 'Number'
                }
              },
              pushed_native_google: {
                required: false,
                serialized_name: 'pushed-native-google',
                type: {
                  name: 'Number'
                }
              },
              pushed_native_adm: {
                required: false,
                serialized_name: 'pushed-native-adm',
                type: {
                  name: 'Number'
                }
              },
              delivered: {
                required: false,
                serialized_name: 'delivered',
                type: {
                  name: 'Number'
                }
              },
              dropped: {
                required: false,
                serialized_name: 'dropped',
                type: {
                  name: 'Number'
                }
              },
              system_notification_displayed: {
                required: false,
                serialized_name: 'system-notification-displayed',
                type: {
                  name: 'Number'
                }
              },
              in_app_notification_displayed: {
                required: false,
                serialized_name: 'in-app-notification-displayed',
                type: {
                  name: 'Number'
                }
              },
              content_displayed: {
                required: false,
                serialized_name: 'content-displayed',
                type: {
                  name: 'Number'
                }
              },
              system_notification_actioned: {
                required: false,
                serialized_name: 'system-notification-actioned',
                type: {
                  name: 'Number'
                }
              },
              system_notification_exited: {
                required: false,
                serialized_name: 'system-notification-exited',
                type: {
                  name: 'Number'
                }
              },
              in_app_notification_actioned: {
                required: false,
                serialized_name: 'in-app-notification-actioned',
                type: {
                  name: 'Number'
                }
              },
              in_app_notification_exited: {
                required: false,
                serialized_name: 'in-app-notification-exited',
                type: {
                  name: 'Number'
                }
              },
              content_actioned: {
                required: false,
                serialized_name: 'content-actioned',
                type: {
                  name: 'Number'
                }
              },
              content_exited: {
                required: false,
                serialized_name: 'content-exited',
                type: {
                  name: 'Number'
                }
              },
              answers: {
                required: false,
                serialized_name: 'answers',
                type: {
                  name: 'Dictionary',
                  value: {
                      required: false,
                      serialized_name: 'ObjectElementType',
                      type: {
                        name: 'Object'
                      }
                  }
                }
              }
            }
          }
        }
      end
    end
  end
end