class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::IncidentAdditionalData
Incident
additional data property bag.
Attributes
alert_product_names[RW]
@return [Array<String>] List of product names of alerts in the incident
alerts_count[RW]
@return [Integer] The number of alerts in the incident
bookmarks_count[RW]
@return [Integer] The number of bookmarks in the incident
comments_count[RW]
@return [Integer] The number of comments in the incident
tactics[RW]
@return [Array<AttackTactic>] The tactics associated with incident
Public Class Methods
mapper()
click to toggle source
Mapper for IncidentAdditionalData
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_additional_data.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IncidentAdditionalData', type: { name: 'Composite', class_name: 'IncidentAdditionalData', model_properties: { alerts_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'alertsCount', type: { name: 'Number' } }, bookmarks_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'bookmarksCount', type: { name: 'Number' } }, comments_count: { client_side_validation: true, required: false, read_only: true, serialized_name: 'commentsCount', type: { name: 'Number' } }, alert_product_names: { client_side_validation: true, required: false, read_only: true, serialized_name: 'alertProductNames', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, tactics: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tactics', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'AttackTacticElementType', type: { name: 'String' } } } } } } } end