class Azure::SecurityInsights::Mgmt::V2019_01_01_preview::Models::ExpansionResultAggregation

Information of a specific aggregation in the expansion result.

Attributes

aggregation_type[RW]

@return [String] The common type of the aggregation. (for e.g. entity field name)

count[RW]

@return [Integer] Total number of aggregations of the given kind (and aggregationType if given) in the expansion result.

display_name[RW]

@return [String] The display name of the aggregation by type.

entity_kind[RW]

@return [EntityKind] The kind of the aggregated entity. Possible values include: 'Account', 'Host', 'File', 'AzureResource', 'CloudApplication', 'DnsResolution', 'FileHash', 'Ip', 'Malware', 'Process', 'RegistryKey', 'RegistryValue', 'SecurityGroup', 'Url', 'IoTDevice', 'SecurityAlert', 'Bookmark'

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-01-01-preview/generated/azure_mgmt_security_insights/models/expansion_result_aggregation.rb, line 38
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExpansionResultAggregation',
    type: {
      name: 'Composite',
      class_name: 'ExpansionResultAggregation',
      model_properties: {
        aggregation_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'aggregationType',
          type: {
            name: 'String'
          }
        },
        count: {
          client_side_validation: true,
          required: true,
          serialized_name: 'count',
          type: {
            name: 'Number'
          }
        },
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        entity_kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'entityKind',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end