-
Notifications
You must be signed in to change notification settings - Fork 29
/
bgpAsP_service.go
53 lines (40 loc) · 2.6 KB
/
bgpAsP_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) CreateBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpAsPattr models.BgpAutonomousSystemProfileAttributes) (*models.BgpAutonomousSystemProfile, error) {
rn := fmt.Sprintf("as")
parentDn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/peerP-[%s]", tenant, l3_outside, logical_node_profile, peer_connectivity_profile_addr)
bgpAsP := models.NewBgpAutonomousSystemProfile(rn, parentDn, description, bgpAsPattr)
err := sm.Save(bgpAsP)
return bgpAsP, err
}
func (sm *ServiceManager) ReadBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) (*models.BgpAutonomousSystemProfile, error) {
dn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/peerP-[%s]/as", tenant, l3_outside, logical_node_profile, peer_connectivity_profile_addr)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
bgpAsP := models.BgpAutonomousSystemProfileFromContainer(cont)
return bgpAsP, nil
}
func (sm *ServiceManager) DeleteBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) error {
dn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/peerP-[%s]/as", tenant, l3_outside, logical_node_profile, peer_connectivity_profile_addr)
return sm.DeleteByDn(dn, models.BgpaspClassName)
}
func (sm *ServiceManager) UpdateBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpAsPattr models.BgpAutonomousSystemProfileAttributes) (*models.BgpAutonomousSystemProfile, error) {
rn := fmt.Sprintf("as")
parentDn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/peerP-[%s]", tenant, l3_outside, logical_node_profile, peer_connectivity_profile_addr)
bgpAsP := models.NewBgpAutonomousSystemProfile(rn, parentDn, description, bgpAsPattr)
bgpAsP.Status = "modified"
err := sm.Save(bgpAsP)
return bgpAsP, err
}
func (sm *ServiceManager) ListBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) ([]*models.BgpAutonomousSystemProfile, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/tn-%s/out-%s/lnodep-%s/peerP-[%s]/bgpAsP.json", baseurlStr, tenant, l3_outside, logical_node_profile, peer_connectivity_profile_addr)
cont, err := sm.GetViaURL(dnUrl)
list := models.BgpAutonomousSystemProfileListFromContainer(cont)
return list, err
}