Class: Azure::TrafficManager::Mgmt::V2018_03_01::Models::MonitorConfigExpectedStatusCodeRangesItem
- Inherits:
-
Object
- Object
- Azure::TrafficManager::Mgmt::V2018_03_01::Models::MonitorConfigExpectedStatusCodeRangesItem
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-01/generated/azure_mgmt_traffic_manager/models/monitor_config_expected_status_code_ranges_item.rb
Overview
Min and max value of a status code range.
Instance Attribute Summary collapse
-
#max ⇒ Integer
Max status code.
-
#min ⇒ Integer
Min status code.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MonitorConfigExpectedStatusCodeRangesItem class as Ruby Hash.
Instance Attribute Details
#max ⇒ Integer
Returns Max status code.
19 20 21 |
# File 'lib/2018-03-01/generated/azure_mgmt_traffic_manager/models/monitor_config_expected_status_code_ranges_item.rb', line 19 def max @max end |
#min ⇒ Integer
Returns Min status code.
16 17 18 |
# File 'lib/2018-03-01/generated/azure_mgmt_traffic_manager/models/monitor_config_expected_status_code_ranges_item.rb', line 16 def min @min end |
Class Method Details
.mapper ⇒ Object
Mapper for MonitorConfigExpectedStatusCodeRangesItem class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-03-01/generated/azure_mgmt_traffic_manager/models/monitor_config_expected_status_code_ranges_item.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MonitorConfig_expectedStatusCodeRangesItem', type: { name: 'Composite', class_name: 'MonitorConfigExpectedStatusCodeRangesItem', model_properties: { min: { client_side_validation: true, required: false, serialized_name: 'min', type: { name: 'Number' } }, max: { client_side_validation: true, required: false, serialized_name: 'max', type: { name: 'Number' } } } } } end |