Class: Azure::Web::Mgmt::V2018_02_01::Models::DetectorInfo
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::DetectorInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb
Overview
Definition of Detector
Instance Attribute Summary collapse
-
#category ⇒ String
Support Category.
-
#description ⇒ String
Short description of the detector and its purpose.
-
#sub_category ⇒ String
Support Sub Category.
-
#support_topic_id ⇒ String
Support Topic Id.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DetectorInfo class as Ruby Hash.
Instance Attribute Details
#category ⇒ String
Returns Support Category.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/detector_info.rb', line 19 def category @category end |
#description ⇒ String
Returns 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_category ⇒ String
Returns 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_id ⇒ String
Returns 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
.mapper ⇒ Object
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 |