class Azure::Security::Mgmt::V2017_08_01_preview::Models::IoTSecurityDeviceAlert

Statistic information about the number of alerts per alert type during the last period

Attributes

alert_display_name[RW]

@return [String] Display name of the alert

alerts_count[RW]

@return [Integer] the number of alerts raised for this alert type

reported_severity[RW]

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

Public Class Methods

mapper() click to toggle source

Mapper for IoTSecurityDeviceAlert 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_alert.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IoTSecurityDeviceAlert',
    type: {
      name: 'Composite',
      class_name: 'IoTSecurityDeviceAlert',
      model_properties: {
        alert_display_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'alertDisplayName',
          type: {
            name: 'String'
          }
        },
        reported_severity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'reportedSeverity',
          type: {
            name: 'String'
          }
        },
        alerts_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'alertsCount',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end