Class: Azure::Security::Mgmt::V2019_08_01::Models::IoTSecurityDeviceAlertsList

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-08-01/generated/azure_mgmt_security/models/io_tsecurity_device_alerts_list.rb

Overview

List of alerts with the count of raised alerts

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

Returns The URI to fetch the next page.

Returns:

  • (String)

    The URI to fetch the next page.



19
20
21
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/io_tsecurity_device_alerts_list.rb', line 19

def next_link
  @next_link
end

#valueArray<IoTSecurityDeviceAlert>

Returns List of top alerts data.

Returns:



16
17
18
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/io_tsecurity_device_alerts_list.rb', line 16

def value
  @value
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
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
61
62
63
64
# File 'lib/2019-08-01/generated/azure_mgmt_security/models/io_tsecurity_device_alerts_list.rb', line 26

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IoTSecurityDeviceAlertsList',
    type: {
      name: 'Composite',
      class_name: 'IoTSecurityDeviceAlertsList',
      model_properties: {
        value: {
          client_side_validation: true,
          required: true,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'IoTSecurityDeviceAlertElementType',
                type: {
                  name: 'Composite',
                  class_name: 'IoTSecurityDeviceAlert'
                }
            }
          }
        },
        next_link: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'nextLink',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end