This file is indexed.

/usr/lib/ruby/vendor_ruby/generated/azure_mgmt_machine_learning/models/service_input_output_specification.rb is in ruby-azure-mgmt-machine-learning 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
# 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::MachineLearning
  module Models
    #
    # The swagger 2.0 schema describing the service's inputs or outputs. See
    # Swagger specification: http://swagger.io/specification/
    #
    class ServiceInputOutputSpecification

      include MsRestAzure

      # @return [String] The title of your Swagger schema.
      attr_accessor :title

      # @return [String] The description of the Swagger schema.
      attr_accessor :description

      # @return [String] The type of the entity described in swagger. Always
      # 'object'. Default value: 'object' .
      attr_accessor :type

      # @return [Hash{String => TableSpecification}] Specifies a collection
      # that contains the column schema for each input or output of the web
      # service. For more information, see the Swagger specification.
      attr_accessor :properties


      #
      # Mapper for ServiceInputOutputSpecification class as Ruby Hash.
      # This will be used for serialization/deserialization.
      #
      def self.mapper()
        {
          required: false,
          serialized_name: 'ServiceInputOutputSpecification',
          type: {
            name: 'Composite',
            class_name: 'ServiceInputOutputSpecification',
            model_properties: {
              title: {
                required: false,
                serialized_name: 'title',
                type: {
                  name: 'String'
                }
              },
              description: {
                required: false,
                serialized_name: 'description',
                type: {
                  name: 'String'
                }
              },
              type: {
                required: true,
                serialized_name: 'type',
                default_value: 'object',
                type: {
                  name: 'String'
                }
              },
              properties: {
                required: true,
                serialized_name: 'properties',
                type: {
                  name: 'Dictionary',
                  value: {
                      required: false,
                      serialized_name: 'TableSpecificationElementType',
                      type: {
                        name: 'Composite',
                        class_name: 'TableSpecification'
                      }
                  }
                }
              }
            }
          }
        }
      end
    end
  end
end