-
Notifications
You must be signed in to change notification settings - Fork 29
/
l3extIp_service.go
53 lines (40 loc) · 2.99 KB
/
l3extIp_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) CreateL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extIpattr models.L3outPathAttachmentSecondaryIpAttributes) (*models.L3outPathAttachmentSecondaryIp, error) {
rn := fmt.Sprintf("addr-[%s]", addr)
parentDn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/lifp-%s/rspathL3OutAtt-[%s]", tenant, l3_outside, logical_node_profile, logical_interface_profile, leaf_port_tDn)
l3extIp := models.NewL3outPathAttachmentSecondaryIp(rn, parentDn, description, l3extIpattr)
err := sm.Save(l3extIp)
return l3extIp, err
}
func (sm *ServiceManager) ReadL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outPathAttachmentSecondaryIp, error) {
dn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/lifp-%s/rspathL3OutAtt-[%s]/addr-[%s]", tenant, l3_outside, logical_node_profile, logical_interface_profile, leaf_port_tDn, addr)
cont, err := sm.Get(dn)
if err != nil {
return nil, err
}
l3extIp := models.L3outPathAttachmentSecondaryIpFromContainer(cont)
return l3extIp, nil
}
func (sm *ServiceManager) DeleteL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error {
dn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/lifp-%s/rspathL3OutAtt-[%s]/addr-[%s]", tenant, l3_outside, logical_node_profile, logical_interface_profile, leaf_port_tDn, addr)
return sm.DeleteByDn(dn, models.L3extipClassName)
}
func (sm *ServiceManager) UpdateL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extIpattr models.L3outPathAttachmentSecondaryIpAttributes) (*models.L3outPathAttachmentSecondaryIp, error) {
rn := fmt.Sprintf("addr-[%s]", addr)
parentDn := fmt.Sprintf("uni/tn-%s/out-%s/lnodep-%s/lifp-%s/rspathL3OutAtt-[%s]", tenant, l3_outside, logical_node_profile, logical_interface_profile, leaf_port_tDn)
l3extIp := models.NewL3outPathAttachmentSecondaryIp(rn, parentDn, description, l3extIpattr)
l3extIp.Status = "modified"
err := sm.Save(l3extIp)
return l3extIp, err
}
func (sm *ServiceManager) ListL3outPathAttachmentSecondaryIp(leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outPathAttachmentSecondaryIp, error) {
baseurlStr := "/api/node/class"
dnUrl := fmt.Sprintf("%s/uni/tn-%s/out-%s/lnodep-%s/lifp-%s/rspathL3OutAtt-[%s]/l3extIp.json", baseurlStr, tenant, l3_outside, logical_node_profile, logical_interface_profile, leaf_port_tDn)
cont, err := sm.GetViaURL(dnUrl)
list := models.L3outPathAttachmentSecondaryIpListFromContainer(cont)
return list, err
}