-
Notifications
You must be signed in to change notification settings - Fork 29
/
infraRsDomP_service.go
53 lines (40 loc) · 1.9 KB
/
infraRsDomP_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) CreateDomain(tDn string, attachable_access_entity_profile string, description string, infraRsDomPattr models.DomainAttributes) (*models.Domain, error) {
rn := fmt.Sprintf("rsdomP-[%s]", tDn)
parentDn := fmt.Sprintf("uni/infra/attentp-%s", attachable_access_entity_profile)
infraRsDomP := models.NewDomain(rn, parentDn, description, infraRsDomPattr)
err := sm.Save(infraRsDomP)
return infraRsDomP, err
}
func (sm *ServiceManager) ReadDomain(tDn string, attachable_access_entity_profile string) (*models.Domain, error) {
dn := fmt.Sprintf("uni/infra/attentp-%s/rsdomP-[%s]", attachable_access_entity_profile, tDn)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
infraRsDomP := models.DomainFromContainer(cont)
return infraRsDomP, nil
}
func (sm *ServiceManager) DeleteDomain(tDn string, attachable_access_entity_profile string) error {
dn := fmt.Sprintf("uni/infra/attentp-%s/rsdomP-[%s]", attachable_access_entity_profile, tDn)
return sm.DeleteByDn(dn, models.InfrarsdompClassName)
}
func (sm *ServiceManager) UpdateDomain(tDn string, attachable_access_entity_profile string, description string, infraRsDomPattr models.DomainAttributes) (*models.Domain, error) {
rn := fmt.Sprintf("rsdomP-[%s]", tDn)
parentDn := fmt.Sprintf("uni/infra/attentp-%s", attachable_access_entity_profile)
infraRsDomP := models.NewDomain(rn, parentDn, description, infraRsDomPattr)
infraRsDomP.Status = "modified"
err := sm.Save(infraRsDomP)
return infraRsDomP, err
}
func (sm *ServiceManager) ListDomain(attachable_access_entity_profile string) ([]*models.Domain, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/infra/attentp-%s/infraRsDomP.json", baseurlStr, attachable_access_entity_profile)
cont, err := sm.GetViaURL(dnUrl)
list := models.DomainListFromContainer(cont)
return list, err
}