-
Notifications
You must be signed in to change notification settings - Fork 29
/
aaa_user_ep.go
96 lines (86 loc) · 2.69 KB
/
aaa_user_ep.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
package models
import (
"fmt"
"strconv"
"github.com/ciscoecosystem/aci-go-client/v2/container"
)
const (
DnaaaUserEp = "uni/userext"
RnaaaUserEp = "userext"
ParentDnaaaUserEp = "uni"
AaauserepClassName = "aaaUserEp"
)
type UserManagement struct {
BaseAttributes
NameAliasAttribute
UserManagementAttributes
}
type UserManagementAttributes struct {
Annotation string `json:",omitempty"`
Name string `json:",omitempty"`
PwdStrengthCheck string `json:",omitempty"`
}
func NewUserManagement(aaaUserEpRn, parentDn, description, nameAlias string, aaaUserEpAttr UserManagementAttributes) *UserManagement {
dn := fmt.Sprintf("%s/%s", parentDn, aaaUserEpRn)
return &UserManagement{
BaseAttributes: BaseAttributes{
DistinguishedName: dn,
Description: description,
Status: "created, modified",
ClassName: AaauserepClassName,
Rn: aaaUserEpRn,
},
NameAliasAttribute: NameAliasAttribute{
NameAlias: nameAlias,
},
UserManagementAttributes: aaaUserEpAttr,
}
}
func (aaaUserEp *UserManagement) ToMap() (map[string]string, error) {
aaaUserEpMap, err := aaaUserEp.BaseAttributes.ToMap()
if err != nil {
return nil, err
}
alias, err := aaaUserEp.NameAliasAttribute.ToMap()
if err != nil {
return nil, err
}
for key, value := range alias {
A(aaaUserEpMap, key, value)
}
A(aaaUserEpMap, "annotation", aaaUserEp.Annotation)
A(aaaUserEpMap, "name", aaaUserEp.Name)
A(aaaUserEpMap, "pwdStrengthCheck", aaaUserEp.PwdStrengthCheck)
return aaaUserEpMap, err
}
func UserManagementFromContainerList(cont *container.Container, index int) *UserManagement {
UserManagementCont := cont.S("imdata").Index(index).S(AaauserepClassName, "attributes")
return &UserManagement{
BaseAttributes{
DistinguishedName: G(UserManagementCont, "dn"),
Description: G(UserManagementCont, "descr"),
Status: G(UserManagementCont, "status"),
ClassName: AaauserepClassName,
Rn: G(UserManagementCont, "rn"),
},
NameAliasAttribute{
NameAlias: G(UserManagementCont, "nameAlias"),
},
UserManagementAttributes{
Annotation: G(UserManagementCont, "annotation"),
Name: G(UserManagementCont, "name"),
PwdStrengthCheck: G(UserManagementCont, "pwdStrengthCheck"),
},
}
}
func UserManagementFromContainer(cont *container.Container) *UserManagement {
return UserManagementFromContainerList(cont, 0)
}
func UserManagementListFromContainer(cont *container.Container) []*UserManagement {
length, _ := strconv.Atoi(G(cont, "totalCount"))
arr := make([]*UserManagement, length)
for i := 0; i < length; i++ {
arr[i] = UserManagementFromContainerList(cont, i)
}
return arr
}