This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
b_p_f_map_entry.go
112 lines (86 loc) · 2.58 KB
/
b_p_f_map_entry.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
// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// BPFMapEntry BPF map cache entry"
// swagger:model BPFMapEntry
type BPFMapEntry struct {
// Desired action to be performed
// Enum: [ok insert delete]
DesiredAction string `json:"desired-action,omitempty"`
// Key of map entry
Key string `json:"key,omitempty"`
// Last error seen while performing desired action
LastError string `json:"last-error,omitempty"`
// Value of map entry
Value string `json:"value,omitempty"`
}
// Validate validates this b p f map entry
func (m *BPFMapEntry) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateDesiredAction(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
var bPFMapEntryTypeDesiredActionPropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["ok","insert","delete"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
bPFMapEntryTypeDesiredActionPropEnum = append(bPFMapEntryTypeDesiredActionPropEnum, v)
}
}
const (
// BPFMapEntryDesiredActionOk captures enum value "ok"
BPFMapEntryDesiredActionOk string = "ok"
// BPFMapEntryDesiredActionInsert captures enum value "insert"
BPFMapEntryDesiredActionInsert string = "insert"
// BPFMapEntryDesiredActionDelete captures enum value "delete"
BPFMapEntryDesiredActionDelete string = "delete"
)
// prop value enum
func (m *BPFMapEntry) validateDesiredActionEnum(path, location string, value string) error {
if err := validate.Enum(path, location, value, bPFMapEntryTypeDesiredActionPropEnum); err != nil {
return err
}
return nil
}
func (m *BPFMapEntry) validateDesiredAction(formats strfmt.Registry) error {
if swag.IsZero(m.DesiredAction) { // not required
return nil
}
// value enum
if err := m.validateDesiredActionEnum("desired-action", "body", m.DesiredAction); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *BPFMapEntry) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *BPFMapEntry) UnmarshalBinary(b []byte) error {
var res BPFMapEntry
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}