Class: Azure::Web::Mgmt::V2018_02_01::Models::DetectorInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb

Overview

Definition of Detector

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#categoryString

Returns Support Category.

Returns:

  • (String)

    Support Category



19
20
21
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 19

def category
  @category
end

#descriptionString

Returns Short description of the detector and its purpose.

Returns:

  • (String)

    Short description of the detector and its purpose



16
17
18
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 16

def description
  @description
end

#sub_categoryString

Returns Support Sub Category.

Returns:

  • (String)

    Support Sub Category



22
23
24
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 22

def sub_category
  @sub_category
end

#support_topic_idString

Returns Support Topic Id.

Returns:

  • (String)

    Support Topic Id



25
26
27
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 25

def support_topic_id
  @support_topic_id
end

Class Method Details

.mapperObject

Mapper for DetectorInfo class as Ruby Hash. This will be used for serialization/deserialization.



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
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 32

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DetectorInfo',
    type: {
      name: 'Composite',
      class_name: 'DetectorInfo',
      model_properties: {
        description: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        category: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'category',
          type: {
            name: 'String'
          }
        },
        sub_category: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'subCategory',
          type: {
            name: 'String'
          }
        },
        support_topic_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'supportTopicId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end