Skip to content

Commit dec9000

Browse files
committed
minor fixes to List() api
1 parent cfbecf9 commit dec9000

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

client/contivModelClient.go

+22-22
Original file line numberDiff line numberDiff line change
@@ -398,12 +398,12 @@ func (c *ContivClient) AppPost(obj *App) error {
398398
}
399399

400400
// AppList lists all app objects
401-
func (c *ContivClient) AppList() (*[]App, error) {
401+
func (c *ContivClient) AppList() (*[]*App, error) {
402402
// build key and URL
403403
url := c.baseURL + "/api/apps/"
404404

405405
// http get the object
406-
var objList []App
406+
var objList []*App
407407
err := httpGet(url, &objList)
408408
if err != nil {
409409
log.Errorf("Error getting apps. Err: %v", err)
@@ -463,12 +463,12 @@ func (c *ContivClient) EndpointGroupPost(obj *EndpointGroup) error {
463463
}
464464

465465
// EndpointGroupList lists all endpointGroup objects
466-
func (c *ContivClient) EndpointGroupList() (*[]EndpointGroup, error) {
466+
func (c *ContivClient) EndpointGroupList() (*[]*EndpointGroup, error) {
467467
// build key and URL
468468
url := c.baseURL + "/api/endpointGroups/"
469469

470470
// http get the object
471-
var objList []EndpointGroup
471+
var objList []*EndpointGroup
472472
err := httpGet(url, &objList)
473473
if err != nil {
474474
log.Errorf("Error getting endpointGroups. Err: %v", err)
@@ -528,12 +528,12 @@ func (c *ContivClient) GlobalPost(obj *Global) error {
528528
}
529529

530530
// GlobalList lists all global objects
531-
func (c *ContivClient) GlobalList() (*[]Global, error) {
531+
func (c *ContivClient) GlobalList() (*[]*Global, error) {
532532
// build key and URL
533533
url := c.baseURL + "/api/globals/"
534534

535535
// http get the object
536-
var objList []Global
536+
var objList []*Global
537537
err := httpGet(url, &objList)
538538
if err != nil {
539539
log.Errorf("Error getting globals. Err: %v", err)
@@ -658,12 +658,12 @@ func (c *ContivClient) NetworkPost(obj *Network) error {
658658
}
659659

660660
// NetworkList lists all network objects
661-
func (c *ContivClient) NetworkList() (*[]Network, error) {
661+
func (c *ContivClient) NetworkList() (*[]*Network, error) {
662662
// build key and URL
663663
url := c.baseURL + "/api/networks/"
664664

665665
// http get the object
666-
var objList []Network
666+
var objList []*Network
667667
err := httpGet(url, &objList)
668668
if err != nil {
669669
log.Errorf("Error getting networks. Err: %v", err)
@@ -723,12 +723,12 @@ func (c *ContivClient) PolicyPost(obj *Policy) error {
723723
}
724724

725725
// PolicyList lists all policy objects
726-
func (c *ContivClient) PolicyList() (*[]Policy, error) {
726+
func (c *ContivClient) PolicyList() (*[]*Policy, error) {
727727
// build key and URL
728728
url := c.baseURL + "/api/policys/"
729729

730730
// http get the object
731-
var objList []Policy
731+
var objList []*Policy
732732
err := httpGet(url, &objList)
733733
if err != nil {
734734
log.Errorf("Error getting policys. Err: %v", err)
@@ -788,12 +788,12 @@ func (c *ContivClient) RulePost(obj *Rule) error {
788788
}
789789

790790
// RuleList lists all rule objects
791-
func (c *ContivClient) RuleList() (*[]Rule, error) {
791+
func (c *ContivClient) RuleList() (*[]*Rule, error) {
792792
// build key and URL
793793
url := c.baseURL + "/api/rules/"
794794

795795
// http get the object
796-
var objList []Rule
796+
var objList []*Rule
797797
err := httpGet(url, &objList)
798798
if err != nil {
799799
log.Errorf("Error getting rules. Err: %v", err)
@@ -853,12 +853,12 @@ func (c *ContivClient) ServicePost(obj *Service) error {
853853
}
854854

855855
// ServiceList lists all service objects
856-
func (c *ContivClient) ServiceList() (*[]Service, error) {
856+
func (c *ContivClient) ServiceList() (*[]*Service, error) {
857857
// build key and URL
858858
url := c.baseURL + "/api/services/"
859859

860860
// http get the object
861-
var objList []Service
861+
var objList []*Service
862862
err := httpGet(url, &objList)
863863
if err != nil {
864864
log.Errorf("Error getting services. Err: %v", err)
@@ -918,12 +918,12 @@ func (c *ContivClient) ServiceInstancePost(obj *ServiceInstance) error {
918918
}
919919

920920
// ServiceInstanceList lists all serviceInstance objects
921-
func (c *ContivClient) ServiceInstanceList() (*[]ServiceInstance, error) {
921+
func (c *ContivClient) ServiceInstanceList() (*[]*ServiceInstance, error) {
922922
// build key and URL
923923
url := c.baseURL + "/api/serviceInstances/"
924924

925925
// http get the object
926-
var objList []ServiceInstance
926+
var objList []*ServiceInstance
927927
err := httpGet(url, &objList)
928928
if err != nil {
929929
log.Errorf("Error getting serviceInstances. Err: %v", err)
@@ -983,12 +983,12 @@ func (c *ContivClient) TenantPost(obj *Tenant) error {
983983
}
984984

985985
// TenantList lists all tenant objects
986-
func (c *ContivClient) TenantList() (*[]Tenant, error) {
986+
func (c *ContivClient) TenantList() (*[]*Tenant, error) {
987987
// build key and URL
988988
url := c.baseURL + "/api/tenants/"
989989

990990
// http get the object
991-
var objList []Tenant
991+
var objList []*Tenant
992992
err := httpGet(url, &objList)
993993
if err != nil {
994994
log.Errorf("Error getting tenants. Err: %v", err)
@@ -1048,12 +1048,12 @@ func (c *ContivClient) VolumePost(obj *Volume) error {
10481048
}
10491049

10501050
// VolumeList lists all volume objects
1051-
func (c *ContivClient) VolumeList() (*[]Volume, error) {
1051+
func (c *ContivClient) VolumeList() (*[]*Volume, error) {
10521052
// build key and URL
10531053
url := c.baseURL + "/api/volumes/"
10541054

10551055
// http get the object
1056-
var objList []Volume
1056+
var objList []*Volume
10571057
err := httpGet(url, &objList)
10581058
if err != nil {
10591059
log.Errorf("Error getting volumes. Err: %v", err)
@@ -1113,12 +1113,12 @@ func (c *ContivClient) VolumeProfilePost(obj *VolumeProfile) error {
11131113
}
11141114

11151115
// VolumeProfileList lists all volumeProfile objects
1116-
func (c *ContivClient) VolumeProfileList() (*[]VolumeProfile, error) {
1116+
func (c *ContivClient) VolumeProfileList() (*[]*VolumeProfile, error) {
11171117
// build key and URL
11181118
url := c.baseURL + "/api/volumeProfiles/"
11191119

11201120
// http get the object
1121-
var objList []VolumeProfile
1121+
var objList []*VolumeProfile
11221122
err := httpGet(url, &objList)
11231123
if err != nil {
11241124
log.Errorf("Error getting volumeProfiles. Err: %v", err)

0 commit comments

Comments
 (0)