-
Notifications
You must be signed in to change notification settings - Fork 29
/
fvRsPathAtt_service.go
53 lines (40 loc) · 2.17 KB
/
fvRsPathAtt_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) CreateStaticPath(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsPathAttattr models.StaticPathAttributes) (*models.StaticPath, error) {
rn := fmt.Sprintf("rspathAtt-[%s]", tDn)
parentDn := fmt.Sprintf("uni/tn-%s/ap-%s/epg-%s", tenant, application_profile, application_epg)
fvRsPathAtt := models.NewStaticPath(rn, parentDn, description, fvRsPathAttattr)
err := sm.Save(fvRsPathAtt)
return fvRsPathAtt, err
}
func (sm *ServiceManager) ReadStaticPath(tDn string, application_epg string, application_profile string, tenant string) (*models.StaticPath, error) {
dn := fmt.Sprintf("uni/tn-%s/ap-%s/epg-%s/rspathAtt-[%s]", tenant, application_profile, application_epg, tDn)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
fvRsPathAtt := models.StaticPathFromContainer(cont)
return fvRsPathAtt, nil
}
func (sm *ServiceManager) DeleteStaticPath(tDn string, application_epg string, application_profile string, tenant string) error {
dn := fmt.Sprintf("uni/tn-%s/ap-%s/epg-%s/rspathAtt-[%s]", tenant, application_profile, application_epg, tDn)
return sm.DeleteByDn(dn, models.FvrspathattClassName)
}
func (sm *ServiceManager) UpdateStaticPath(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsPathAttattr models.StaticPathAttributes) (*models.StaticPath, error) {
rn := fmt.Sprintf("rspathAtt-[%s]", tDn)
parentDn := fmt.Sprintf("uni/tn-%s/ap-%s/epg-%s", tenant, application_profile, application_epg)
fvRsPathAtt := models.NewStaticPath(rn, parentDn, description, fvRsPathAttattr)
fvRsPathAtt.Status = "modified"
err := sm.Save(fvRsPathAtt)
return fvRsPathAtt, err
}
func (sm *ServiceManager) ListStaticPath(application_epg string, application_profile string, tenant string) ([]*models.StaticPath, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/tn-%s/ap-%s/epg-%s/fvRsPathAtt.json", baseurlStr, tenant, application_profile, application_epg)
cont, err := sm.GetViaURL(dnUrl)
list := models.StaticPathListFromContainer(cont)
return list, err
}