class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::SecurityAlertPropertiesConfidenceReasonsItem

confidence reason item

Attributes

reason[RW]

@return [String] The reason's description

reason_type[RW]

@return [String] The type (category) of the reason

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/security_alert_properties_confidence_reasons_item.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SecurityAlertProperties_confidenceReasonsItem',
    type: {
      name: 'Composite',
      class_name: 'SecurityAlertPropertiesConfidenceReasonsItem',
      model_properties: {
        reason: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'reason',
          type: {
            name: 'String'
          }
        },
        reason_type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'reasonType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end