-
Notifications
You must be signed in to change notification settings - Fork 29
/
l3IfPol_service.go
53 lines (40 loc) · 1.58 KB
/
l3IfPol_service.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
package client
import (
"fmt"
"github.com/ciscoecosystem/aci-go-client/models"
)
func (sm *ServiceManager) CreateL3InterfacePolicy(name string, description string, l3IfPolattr models.L3InterfacePolicyAttributes) (*models.L3InterfacePolicy, error) {
rn := fmt.Sprintf("fabric/l3IfP-%s", name)
parentDn := fmt.Sprintf("uni")
l3IfPol := models.NewL3InterfacePolicy(rn, parentDn, description, l3IfPolattr)
err := sm.Save(l3IfPol)
return l3IfPol, err
}
func (sm *ServiceManager) ReadL3InterfacePolicy(name string) (*models.L3InterfacePolicy, error) {
dn := fmt.Sprintf("uni/fabric/l3IfP-%s", name)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
l3IfPol := models.L3InterfacePolicyFromContainer(cont)
return l3IfPol, nil
}
func (sm *ServiceManager) DeleteL3InterfacePolicy(name string) error {
dn := fmt.Sprintf("uni/fabric/l3IfP-%s", name)
return sm.DeleteByDn(dn, models.L3ifpolClassName)
}
func (sm *ServiceManager) UpdateL3InterfacePolicy(name string, description string, l3IfPolattr models.L3InterfacePolicyAttributes) (*models.L3InterfacePolicy, error) {
rn := fmt.Sprintf("fabric/l3IfP-%s", name)
parentDn := fmt.Sprintf("uni")
l3IfPol := models.NewL3InterfacePolicy(rn, parentDn, description, l3IfPolattr)
l3IfPol.Status = "modified"
err := sm.Save(l3IfPol)
return l3IfPol, err
}
func (sm *ServiceManager) ListL3InterfacePolicy() ([]*models.L3InterfacePolicy, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/l3IfPol.json", baseurlStr)
cont, err := sm.GetViaURL(dnUrl)
list := models.L3InterfacePolicyListFromContainer(cont)
return list, err
}