-
Notifications
You must be signed in to change notification settings - Fork 29
/
infraNodeBlk_service.go
53 lines (40 loc) · 2.36 KB
/
infraNodeBlk_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) CreateNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string, description string, infraNodeBlkattr models.NodeBlockAttributes) (*models.NodeBlock, error) {
rn := fmt.Sprintf("nodeblk-%s", name)
parentDn := fmt.Sprintf("uni/infra/nprof-%s/leaves-%s-typ-%s", leaf_profile, switch_association, switch_association_type)
infraNodeBlk := models.NewNodeBlock(rn, parentDn, description, infraNodeBlkattr)
err := sm.Save(infraNodeBlk)
return infraNodeBlk, err
}
func (sm *ServiceManager) ReadNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string) (*models.NodeBlock, error) {
dn := fmt.Sprintf("uni/infra/nprof-%s/leaves-%s-typ-%s/nodeblk-%s", leaf_profile, switch_association, switch_association_type, name)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
infraNodeBlk := models.NodeBlockFromContainerBLK(cont)
return infraNodeBlk, nil
}
func (sm *ServiceManager) DeleteNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string) error {
dn := fmt.Sprintf("uni/infra/nprof-%s/leaves-%s-typ-%s/nodeblk-%s", leaf_profile, switch_association, switch_association_type, name)
return sm.DeleteByDn(dn, models.InfranodeblkClassName)
}
func (sm *ServiceManager) UpdateNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string, description string, infraNodeBlkattr models.NodeBlockAttributes) (*models.NodeBlock, error) {
rn := fmt.Sprintf("nodeblk-%s", name)
parentDn := fmt.Sprintf("uni/infra/nprof-%s/leaves-%s-typ-%s", leaf_profile, switch_association, switch_association_type)
infraNodeBlk := models.NewNodeBlock(rn, parentDn, description, infraNodeBlkattr)
infraNodeBlk.Status = "modified"
err := sm.Save(infraNodeBlk)
return infraNodeBlk, err
}
func (sm *ServiceManager) ListNodeBlock(switch_association_type string, switch_association string, leaf_profile string) ([]*models.NodeBlock, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/infra/nprof-%s/leaves-%s-typ-%s/infraNodeBlk.json", baseurlStr, leaf_profile, switch_association, switch_association_type)
cont, err := sm.GetViaURL(dnUrl)
list := models.NodeBlockListFromContainerBLK(cont)
return list, err
}