This file is indexed.

/usr/lib/ruby/vendor_ruby/generated/azure_mgmt_mobile_engagement/models/campaign_audience.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
# 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
    #
    # Specify which users will be targeted by this campaign. By default, all
    # users will be targeted. If you set `pushMode` property to `manual`, the
    # only thing you can specify in the audience is the push quota filter. An
    # audience is a boolean expression made of criteria (variables) operators
    # (`not`, `and` or `or`) and parenthesis. Additionally, a set of filters
    # can be added to an audience. 65535 bytes max as per JSON encoding.
    # 
    #
    class CampaignAudience

      include MsRestAzure

      # @return [String] Boolean expression made of criteria (variables)
      # operators (`not`, `and` or `or`) and parenthesis. Criterion names in
      # the audience expression must start with a capital letter and can only
      # contain alphanumeric (A-Z,a-z,0-9) and underscore (_) characters.
      # 
      attr_accessor :expression

      # @return [Hash{String => Criterion}] Criteria by name.
      attr_accessor :criteria

      # @return [Array<Filter>] Global filters applied to all devices.
      attr_accessor :filters


      #
      # Mapper for CampaignAudience class as Ruby Hash.
      # This will be used for serialization/deserialization.
      #
      def self.mapper()
        {
          required: false,
          serialized_name: 'Campaign_audience',
          type: {
            name: 'Composite',
            class_name: 'CampaignAudience',
            model_properties: {
              expression: {
                required: false,
                serialized_name: 'expression',
                type: {
                  name: 'String'
                }
              },
              criteria: {
                required: false,
                serialized_name: 'criteria',
                type: {
                  name: 'Dictionary',
                  value: {
                      required: false,
                      serialized_name: 'CriterionElementType',
                      type: {
                        name: 'Composite',
                        polymorphic_discriminator: 'type',
                        uber_parent: 'Criterion',
                        class_name: 'Criterion'
                      }
                  }
                }
              },
              filters: {
                required: false,
                serialized_name: 'filters',
                type: {
                  name: 'Sequence',
                  element: {
                      required: false,
                      serialized_name: 'FilterElementType',
                      type: {
                        name: 'Composite',
                        polymorphic_discriminator: 'type',
                        uber_parent: 'Filter',
                        class_name: 'Filter'
                      }
                  }
                }
              }
            }
          }
        }
      end
    end
  end
end