Class: Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::IncidentEntitiesResultsMetadata

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_entities_results_metadata.rb

Overview

Information of a specific aggregation in the incident related entities result.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#countInteger

incident related entities result.

Returns:

  • (Integer)

    Total number of aggregations of the given kind in the



18
19
20
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_entities_results_metadata.rb', line 18

def count
  @count
end

#entity_kindEntityKind

include: ‘Account’, ‘Host’, ‘File’, ‘AzureResource’, ‘CloudApplication’, ‘DnsResolution’, ‘FileHash’, ‘Ip’, ‘Malware’, ‘Process’, ‘RegistryKey’, ‘RegistryValue’, ‘SecurityGroup’, ‘Url’, ‘IoTDevice’, ‘SecurityAlert’, ‘Bookmark’

Returns:

  • (EntityKind)

    The kind of the aggregated entity. Possible values



25
26
27
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_entities_results_metadata.rb', line 25

def entity_kind
  @entity_kind
end

Class Method Details

.mapperObject

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



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/incident_entities_results_metadata.rb', line 32

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IncidentEntitiesResultsMetadata',
    type: {
      name: 'Composite',
      class_name: 'IncidentEntitiesResultsMetadata',
      model_properties: {
        count: {
          client_side_validation: true,
          required: true,
          serialized_name: 'count',
          type: {
            name: 'Number'
          }
        },
        entity_kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'entityKind',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end