-
Notifications
You must be signed in to change notification settings - Fork 5
/
template.go
41 lines (35 loc) · 1.24 KB
/
template.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
package illumioapi
import (
"encoding/json"
"io"
"os"
)
// IllumioSecurityTemplateFile is a file with a slice of templates
type IllumioSecurityTemplateFile struct {
IllumioSecurityTemplates []*IllumioSecurityTemplate `json:"illumio_security_templates"`
}
// IllumioSecurityTemplate contains Labels, IP Lists, Services
type IllumioSecurityTemplate struct {
Name string `json:"name"`
Version int `json:"version"`
OsFamily string `json:"os_family"`
Icon string `json:"icon"`
CompatiblePceVersions *[]int `json:"compatible_pce_versions"`
Labels *[]Label `json:"labels,omitempty"`
IPLists *[]IPList `json:"ip_lists,omitempty"`
Services *[]Service `json:"services,omitempty"`
}
// ParseTemplateFile imports a JSON template file into the PCE
func ParseTemplateFile(filename string) (IllumioSecurityTemplateFile, error) {
// Open the file
jsonFile, err := os.Open(filename)
if err != nil {
return IllumioSecurityTemplateFile{}, err
}
defer jsonFile.Close()
// Unmarshal the JSON
byteValue, _ := io.ReadAll(jsonFile)
var template []IllumioSecurityTemplateFile
json.Unmarshal(byteValue, &template)
return template[0], nil
}