-
Notifications
You must be signed in to change notification settings - Fork 29
/
rtctrl_scope.go
95 lines (83 loc) · 2.66 KB
/
rtctrl_scope.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
package models
import (
"fmt"
"strconv"
"github.com/ciscoecosystem/aci-go-client/v2/container"
)
const (
DnrtctrlScope = "uni/tn-%s/prof-%s/ctx-%s/scp"
RnrtctrlScope = "scp"
ParentDnrtctrlScope = "uni/tn-%s/prof-%s/ctx-%s"
RtctrlscopeClassName = "rtctrlScope"
)
type RouteContextScope struct {
BaseAttributes
NameAliasAttribute
RouteContextScopeAttributes
}
type RouteContextScopeAttributes struct {
Annotation string `json:",omitempty"`
Name string `json:",omitempty"`
}
func NewRouteContextScope(rtctrlScopeRn, parentDn, description, nameAlias string, rtctrlScopeAttr RouteContextScopeAttributes) *RouteContextScope {
dn := fmt.Sprintf("%s/%s", parentDn, rtctrlScopeRn)
return &RouteContextScope{
BaseAttributes: BaseAttributes{
DistinguishedName: dn,
Description: description,
Status: "created, modified",
ClassName: RtctrlscopeClassName,
Rn: rtctrlScopeRn,
},
NameAliasAttribute: NameAliasAttribute{
NameAlias: nameAlias,
},
RouteContextScopeAttributes: rtctrlScopeAttr,
}
}
func (rtctrlScope *RouteContextScope) ToMap() (map[string]string, error) {
rtctrlScopeMap, err := rtctrlScope.BaseAttributes.ToMap()
if err != nil {
return nil, err
}
alias, err := rtctrlScope.NameAliasAttribute.ToMap()
if err != nil {
return nil, err
}
for key, value := range alias {
A(rtctrlScopeMap, key, value)
}
A(rtctrlScopeMap, "annotation", rtctrlScope.Annotation)
A(rtctrlScopeMap, "name", rtctrlScope.Name)
return rtctrlScopeMap, err
}
func RouteContextScopeFromContainerList(cont *container.Container, index int) *RouteContextScope {
RouteContextScopeCont := cont.S("imdata").Index(index).S(RtctrlscopeClassName, "attributes")
return &RouteContextScope{
BaseAttributes{
DistinguishedName: G(RouteContextScopeCont, "dn"),
Description: G(RouteContextScopeCont, "descr"),
Status: G(RouteContextScopeCont, "status"),
ClassName: RtctrlscopeClassName,
Rn: G(RouteContextScopeCont, "rn"),
},
NameAliasAttribute{
NameAlias: G(RouteContextScopeCont, "nameAlias"),
},
RouteContextScopeAttributes{
Annotation: G(RouteContextScopeCont, "annotation"),
Name: G(RouteContextScopeCont, "name"),
},
}
}
func RouteContextScopeFromContainer(cont *container.Container) *RouteContextScope {
return RouteContextScopeFromContainerList(cont, 0)
}
func RouteContextScopeListFromContainer(cont *container.Container) []*RouteContextScope {
length, _ := strconv.Atoi(G(cont, "totalCount"))
arr := make([]*RouteContextScope, length)
for i := 0; i < length; i++ {
arr[i] = RouteContextScopeFromContainerList(cont, i)
}
return arr
}