Class: Azure::Security::Mgmt::V2017_08_01_preview::Models::IoTSecurityDeviceRecommendationsList
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2017_08_01_preview::Models::IoTSecurityDeviceRecommendationsList
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_device_recommendations_list.rb
Overview
List of recommendations with the count of devices
Instance Attribute Summary collapse
-
#next_link ⇒ String
The URI to fetch the next page.
-
#value ⇒ Array<IoTSecurityDeviceRecommendation>
recommendation data.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IoTSecurityDeviceRecommendationsList class as Ruby Hash.
Instance Attribute Details
#next_link ⇒ String
Returns The URI to fetch the next page.
20 21 22 |
# File 'lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_device_recommendations_list.rb', line 20 def next_link @next_link end |
#value ⇒ Array<IoTSecurityDeviceRecommendation>
recommendation data
17 18 19 |
# File 'lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_device_recommendations_list.rb', line 17 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for IoTSecurityDeviceRecommendationsList 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 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_device_recommendations_list.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IoTSecurityDeviceRecommendationsList', type: { name: 'Composite', class_name: 'IoTSecurityDeviceRecommendationsList', model_properties: { value: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'IoTSecurityDeviceRecommendationElementType', type: { name: 'Composite', class_name: 'IoTSecurityDeviceRecommendation' } } } }, next_link: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nextLink', type: { name: 'String' } } } } } end |