-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_alertrule.go
93 lines (78 loc) · 2.49 KB
/
model_alertrule.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package alertrules
import (
"encoding/json"
"fmt"
"strings"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type AlertRule interface {
}
// RawAlertRuleImpl is returned when the Discriminated Value
// doesn't match any of the defined types
// NOTE: this should only be used when a type isn't defined for this type of Object (as a workaround)
// and is used only for Deserialization (e.g. this cannot be used as a Request Payload).
type RawAlertRuleImpl struct {
Type string
Values map[string]interface{}
}
func unmarshalAlertRuleImplementation(input []byte) (AlertRule, error) {
if input == nil {
return nil, nil
}
var temp map[string]interface{}
if err := json.Unmarshal(input, &temp); err != nil {
return nil, fmt.Errorf("unmarshaling AlertRule into map[string]interface: %+v", err)
}
value, ok := temp["kind"].(string)
if !ok {
return nil, nil
}
if strings.EqualFold(value, "Fusion") {
var out FusionAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into FusionAlertRule: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "MLBehaviorAnalytics") {
var out MLBehaviorAnalyticsAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into MLBehaviorAnalyticsAlertRule: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "MicrosoftSecurityIncidentCreation") {
var out MicrosoftSecurityIncidentCreationAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into MicrosoftSecurityIncidentCreationAlertRule: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "NRT") {
var out NrtAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into NrtAlertRule: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "Scheduled") {
var out ScheduledAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into ScheduledAlertRule: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "ThreatIntelligence") {
var out ThreatIntelligenceAlertRule
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into ThreatIntelligenceAlertRule: %+v", err)
}
return out, nil
}
out := RawAlertRuleImpl{
Type: value,
Values: temp,
}
return out, nil
}