-
Notifications
You must be signed in to change notification settings - Fork 29
/
snmp_ctx_p.go
91 lines (81 loc) · 2.5 KB
/
snmp_ctx_p.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
package models
import (
"fmt"
"strconv"
"github.com/ciscoecosystem/aci-go-client/container"
)
const (
DnsnmpCtxP = "uni/tn-%s/ctx-%s/snmpctx"
RnsnmpCtxP = "snmpctx"
ParentDnsnmpCtxP = "uni/tn-%s/ctx-%s"
SnmpctxpClassName = "snmpCtxP"
)
type SNMPContextProfile struct {
BaseAttributes
NameAliasAttribute
SNMPContextProfileAttributes
}
type SNMPContextProfileAttributes struct {
Annotation string `json:",omitempty"`
Name string `json:",omitempty"`
}
func NewSNMPContextProfile(snmpCtxPRn, parentDn, nameAlias string, snmpCtxPAttr SNMPContextProfileAttributes) *SNMPContextProfile {
dn := fmt.Sprintf("%s/%s", parentDn, snmpCtxPRn)
return &SNMPContextProfile{
BaseAttributes: BaseAttributes{
DistinguishedName: dn,
Status: "created, modified",
ClassName: SnmpctxpClassName,
Rn: snmpCtxPRn,
},
NameAliasAttribute: NameAliasAttribute{
NameAlias: nameAlias,
},
SNMPContextProfileAttributes: snmpCtxPAttr,
}
}
func (snmpCtxP *SNMPContextProfile) ToMap() (map[string]string, error) {
snmpCtxPMap, err := snmpCtxP.BaseAttributes.ToMap()
if err != nil {
return nil, err
}
alias, err := snmpCtxP.NameAliasAttribute.ToMap()
if err != nil {
return nil, err
}
for key, value := range alias {
A(snmpCtxPMap, key, value)
}
A(snmpCtxPMap, "annotation", snmpCtxP.Annotation)
A(snmpCtxPMap, "name", snmpCtxP.Name)
return snmpCtxPMap, err
}
func SNMPContextProfileFromContainerList(cont *container.Container, index int) *SNMPContextProfile {
SNMPContextProfileCont := cont.S("imdata").Index(index).S(SnmpctxpClassName, "attributes")
return &SNMPContextProfile{
BaseAttributes{
DistinguishedName: G(SNMPContextProfileCont, "dn"),
Status: G(SNMPContextProfileCont, "status"),
ClassName: SnmpctxpClassName,
Rn: G(SNMPContextProfileCont, "rn"),
},
NameAliasAttribute{
NameAlias: G(SNMPContextProfileCont, "nameAlias"),
},
SNMPContextProfileAttributes{
Annotation: G(SNMPContextProfileCont, "annotation"),
Name: G(SNMPContextProfileCont, "name"),
},
}
}
func SNMPContextProfileFromContainer(cont *container.Container) *SNMPContextProfile {
return SNMPContextProfileFromContainerList(cont, 0)
}
func SNMPContextProfileListFromContainer(cont *container.Container) []*SNMPContextProfile {
length, _ := strconv.Atoi(G(cont, "totalCount"))
arr := make([]*SNMPContextProfile, length)
for i := 0; i < length; i++ {
arr[i] = SNMPContextProfileFromContainerList(cont, i)
}
return arr
}