-
Notifications
You must be signed in to change notification settings - Fork 29
/
dhcp_lbl.go
106 lines (73 loc) · 2.3 KB
/
dhcp_lbl.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
package models
import (
"fmt"
"strconv"
"github.com/ciscoecosystem/aci-go-client/v2/container"
)
const DhcplblClassName = "dhcpLbl"
type BDDHCPLabel struct {
BaseAttributes
BDDHCPLabelAttributes
}
type BDDHCPLabelAttributes struct {
Name string `json:",omitempty"`
Annotation string `json:",omitempty"`
NameAlias string `json:",omitempty"`
Owner string `json:",omitempty"`
Tag string `json:",omitempty"`
}
func NewBDDHCPLabel(dhcpLblRn, parentDn, description string, dhcpLblattr BDDHCPLabelAttributes) *BDDHCPLabel {
dn := fmt.Sprintf("%s/%s", parentDn, dhcpLblRn)
return &BDDHCPLabel{
BaseAttributes: BaseAttributes{
DistinguishedName: dn,
Description: description,
Status: "created, modified",
ClassName: DhcplblClassName,
Rn: dhcpLblRn,
},
BDDHCPLabelAttributes: dhcpLblattr,
}
}
func (dhcpLbl *BDDHCPLabel) ToMap() (map[string]string, error) {
dhcpLblMap, err := dhcpLbl.BaseAttributes.ToMap()
if err != nil {
return nil, err
}
A(dhcpLblMap, "name", dhcpLbl.Name)
A(dhcpLblMap, "annotation", dhcpLbl.Annotation)
A(dhcpLblMap, "nameAlias", dhcpLbl.NameAlias)
A(dhcpLblMap, "owner", dhcpLbl.Owner)
A(dhcpLblMap, "tag", dhcpLbl.Tag)
return dhcpLblMap, err
}
func BDDHCPLabelFromContainerList(cont *container.Container, index int) *BDDHCPLabel {
BDDHCPLabelCont := cont.S("imdata").Index(index).S(DhcplblClassName, "attributes")
return &BDDHCPLabel{
BaseAttributes{
DistinguishedName: G(BDDHCPLabelCont, "dn"),
Description: G(BDDHCPLabelCont, "descr"),
Status: G(BDDHCPLabelCont, "status"),
ClassName: DhcplblClassName,
Rn: G(BDDHCPLabelCont, "rn"),
},
BDDHCPLabelAttributes{
Name: G(BDDHCPLabelCont, "name"),
Annotation: G(BDDHCPLabelCont, "annotation"),
NameAlias: G(BDDHCPLabelCont, "nameAlias"),
Owner: G(BDDHCPLabelCont, "owner"),
Tag: G(BDDHCPLabelCont, "tag"),
},
}
}
func BDDHCPLabelFromContainer(cont *container.Container) *BDDHCPLabel {
return BDDHCPLabelFromContainerList(cont, 0)
}
func BDDHCPLabelListFromContainer(cont *container.Container) []*BDDHCPLabel {
length, _ := strconv.Atoi(G(cont, "totalCount"))
arr := make([]*BDDHCPLabel, length)
for i := 0; i < length; i++ {
arr[i] = BDDHCPLabelFromContainerList(cont, i)
}
return arr
}