class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::IncidentInfo

Describes related incident information for the bookmark

Attributes

incident_id[RW]

@return [String] Incident Id

relation_name[RW]

@return [String] Relation Name

severity[RW]

@return [CaseSeverity] The severity of the incident. Possible values include: 'Critical', 'High', 'Medium', 'Low', 'Informational'

title[RW]

@return [String] The title of the incident

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_info.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IncidentInfo',
    type: {
      name: 'Composite',
      class_name: 'IncidentInfo',
      model_properties: {
        incident_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'incidentId',
          type: {
            name: 'String'
          }
        },
        severity: {
          client_side_validation: true,
          required: true,
          serialized_name: 'severity',
          type: {
            name: 'String'
          }
        },
        title: {
          client_side_validation: true,
          required: true,
          serialized_name: 'title',
          type: {
            name: 'String'
          }
        },
        relation_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'relationName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end