class Azure::Security::Mgmt::V2017_08_01_preview::Models::IoTSecurityDeviceRecommendation

Statistic information about the number of recommendations per recommendation type

Attributes

devices_count[RW]

@return [Integer] the number of device with this recommendation

recommendation_display_name[RW]

@return [String] Display name of the recommendation

reported_severity[RW]

@return [ReportedSeverity] Estimated severity of this recommendation. Possible values include: 'Informational', 'Low', 'Medium', 'High'

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-08-01-preview/generated/azure_mgmt_security/models/io_tsecurity_device_recommendation.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IoTSecurityDeviceRecommendation',
    type: {
      name: 'Composite',
      class_name: 'IoTSecurityDeviceRecommendation',
      model_properties: {
        recommendation_display_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'recommendationDisplayName',
          type: {
            name: 'String'
          }
        },
        reported_severity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'reportedSeverity',
          type: {
            name: 'String'
          }
        },
        devices_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'devicesCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end