This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
forked from lacework/go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alert_profiles.go
158 lines (139 loc) · 4.49 KB
/
alert_profiles.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//
// Author:: Darren Murray (<[email protected]>)
// Copyright:: Copyright 2022, Lacework Inc.
// License:: Apache License, Version 2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package api
import (
"fmt"
"github.com/pkg/errors"
)
type v2alertProfilesService struct {
client *Client
Profiles *alertProfilesService
Templates *alertTemplatesService
}
func NewV2AlertProfilesService(c *Client) *v2alertProfilesService {
return &v2alertProfilesService{c,
&alertProfilesService{c},
&alertTemplatesService{c},
}
}
// AlertProfilesService is the service that interacts with
// the AlertProfiles schema from the Lacework APIv2 Server
type alertProfilesService struct {
client *Client
}
// NewAlertProfile returns an instance of the AlertProfileConfig struct
//
// Basic usage: Initialize a new AlertProfileConfig struct, then
//
// use the new instance to do CRUD operations
//
// client, err := api.NewClient("account")
// if err != nil {
// return err
// }
//
// alertProfile := api.NewAlertProfile(
// "CUSTOM_PROFILE_NAME",
// "LW_HE_FILES_DEFAULT_PROFILE"
// []api.AlertTemplate{{
// ...
// }
// },
// )
//
// client.V2.Alert.Profiles.Create(AlertProfile)
func NewAlertProfile(id string, extends string, alerts []AlertTemplate) AlertProfileConfig {
profile := AlertProfileConfig{
Guid: id,
Extends: extends,
Alerts: alerts,
}
return profile
}
// List returns a list of Alert Profiles
func (svc *alertProfilesService) List() (response AlertProfilesResponse, err error) {
err = svc.client.RequestDecoder("GET", apiV2AlertProfiles, nil, &response)
return
}
// Create creates a single Alert Profile
func (svc *alertProfilesService) Create(profile AlertProfileConfig) (
response AlertProfileResponse,
err error,
) {
err = svc.client.RequestEncoderDecoder("POST", apiV2AlertProfiles, profile, &response)
return
}
// Delete deletes a Alert Profile that matches the provided guid
func (svc *alertProfilesService) Delete(guid string) error {
if guid == "" {
return errors.New("specify an intgGuid")
}
return svc.client.RequestDecoder(
"DELETE",
fmt.Sprintf(apiV2AlertProfileFromGUID, guid),
nil,
nil,
)
}
// Update updates a single Alert Profile of the provided guid.
func (svc *alertProfilesService) Update(guid string, data []AlertTemplate) (
response AlertProfileResponse,
err error,
) {
if guid == "" {
err = errors.New("specify a Guid")
return
}
body := alertTemplatesUpdate{data}
apiPath := fmt.Sprintf(apiV2AlertProfileFromGUID, guid)
err = svc.client.RequestEncoderDecoder("PATCH", apiPath, body, &response)
return
}
// Get returns a raw response of the Alert Profile with the matching guid.
func (svc *alertProfilesService) Get(guid string, response interface{}) error {
if guid == "" {
return errors.New("specify a Guid")
}
apiPath := fmt.Sprintf(apiV2AlertProfileFromGUID, guid)
return svc.client.RequestDecoder("GET", apiPath, nil, &response)
}
type AlertProfile struct {
Guid string `json:"alertProfileId,omitempty" yaml:"alertProfileId,omitempty"`
Extends string `json:"extends" yaml:"extends"`
Fields []AlertProfileField `json:"fields,omitempty" yaml:"fields,omitempty"`
DescriptionKeys []AlertProfileDescriptionKeys `json:"descriptionKeys,omitempty" yaml:"descriptionKeys,omitempty"`
Alerts []AlertTemplate `json:"alerts" yaml:"alerts"`
}
type AlertProfileConfig struct {
Guid string `json:"alertProfileId" yaml:"alertProfileId"`
Extends string `json:"extends" yaml:"extends"`
Alerts []AlertTemplate `json:"alerts" yaml:"alerts"`
}
type AlertProfileField struct {
Name string `json:"name" yaml:"name"`
}
type AlertProfileDescriptionKeys struct {
Name string `json:"name" yaml:"name"`
Spec string `json:"spec" yaml:"spec"`
}
type AlertProfileResponse struct {
Data AlertProfile `json:"data" yaml:"data"`
}
type AlertProfilesResponse struct {
Data []AlertProfile `json:"data" yaml:"data"`
}