-
Notifications
You must be signed in to change notification settings - Fork 29
/
mcpIfPol_service.go
69 lines (40 loc) · 1.87 KB
/
mcpIfPol_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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package client
import (
"fmt"
"github.com/ciscoecosystem/aci-go-client/models"
)
func (sm *ServiceManager) CreateMiscablingProtocolInterfacePolicy(name string , description string, mcpIfPolattr models.MiscablingProtocolInterfacePolicyAttributes) (*models.MiscablingProtocolInterfacePolicy, error) {
rn := fmt.Sprintf("infra/mcpIfP-%s",name)
parentDn := fmt.Sprintf("uni")
mcpIfPol := models.NewMiscablingProtocolInterfacePolicy(rn, parentDn, description, mcpIfPolattr)
err := sm.Save(mcpIfPol)
return mcpIfPol, err
}
func (sm *ServiceManager) ReadMiscablingProtocolInterfacePolicy(name string ) (*models.MiscablingProtocolInterfacePolicy, error) {
dn := fmt.Sprintf("uni/infra/mcpIfP-%s", name )
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
mcpIfPol := models.MiscablingProtocolInterfacePolicyFromContainer(cont)
return mcpIfPol, nil
}
func (sm *ServiceManager) DeleteMiscablingProtocolInterfacePolicy(name string ) error {
dn := fmt.Sprintf("uni/infra/mcpIfP-%s", name )
return sm.DeleteByDn(dn, models.McpifpolClassName)
}
func (sm *ServiceManager) UpdateMiscablingProtocolInterfacePolicy(name string ,description string, mcpIfPolattr models.MiscablingProtocolInterfacePolicyAttributes) (*models.MiscablingProtocolInterfacePolicy, error) {
rn := fmt.Sprintf("infra/mcpIfP-%s",name)
parentDn := fmt.Sprintf("uni")
mcpIfPol := models.NewMiscablingProtocolInterfacePolicy(rn, parentDn, description, mcpIfPolattr)
mcpIfPol.Status = "modified"
err := sm.Save(mcpIfPol)
return mcpIfPol, err
}
func (sm *ServiceManager) ListMiscablingProtocolInterfacePolicy() ([]*models.MiscablingProtocolInterfacePolicy, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/mcpIfPol.json", baseurlStr )
cont, err := sm.GetViaURL(dnUrl)
list := models.MiscablingProtocolInterfacePolicyListFromContainer(cont)
return list, err
}