@@ -398,12 +398,12 @@ func (c *ContivClient) AppPost(obj *App) error {
398
398
}
399
399
400
400
// AppList lists all app objects
401
- func (c * ContivClient ) AppList () (* []App , error ) {
401
+ func (c * ContivClient ) AppList () (* []* App , error ) {
402
402
// build key and URL
403
403
url := c .baseURL + "/api/apps/"
404
404
405
405
// http get the object
406
- var objList []App
406
+ var objList []* App
407
407
err := httpGet (url , & objList )
408
408
if err != nil {
409
409
log .Errorf ("Error getting apps. Err: %v" , err )
@@ -463,12 +463,12 @@ func (c *ContivClient) EndpointGroupPost(obj *EndpointGroup) error {
463
463
}
464
464
465
465
// EndpointGroupList lists all endpointGroup objects
466
- func (c * ContivClient ) EndpointGroupList () (* []EndpointGroup , error ) {
466
+ func (c * ContivClient ) EndpointGroupList () (* []* EndpointGroup , error ) {
467
467
// build key and URL
468
468
url := c .baseURL + "/api/endpointGroups/"
469
469
470
470
// http get the object
471
- var objList []EndpointGroup
471
+ var objList []* EndpointGroup
472
472
err := httpGet (url , & objList )
473
473
if err != nil {
474
474
log .Errorf ("Error getting endpointGroups. Err: %v" , err )
@@ -528,12 +528,12 @@ func (c *ContivClient) GlobalPost(obj *Global) error {
528
528
}
529
529
530
530
// GlobalList lists all global objects
531
- func (c * ContivClient ) GlobalList () (* []Global , error ) {
531
+ func (c * ContivClient ) GlobalList () (* []* Global , error ) {
532
532
// build key and URL
533
533
url := c .baseURL + "/api/globals/"
534
534
535
535
// http get the object
536
- var objList []Global
536
+ var objList []* Global
537
537
err := httpGet (url , & objList )
538
538
if err != nil {
539
539
log .Errorf ("Error getting globals. Err: %v" , err )
@@ -658,12 +658,12 @@ func (c *ContivClient) NetworkPost(obj *Network) error {
658
658
}
659
659
660
660
// NetworkList lists all network objects
661
- func (c * ContivClient ) NetworkList () (* []Network , error ) {
661
+ func (c * ContivClient ) NetworkList () (* []* Network , error ) {
662
662
// build key and URL
663
663
url := c .baseURL + "/api/networks/"
664
664
665
665
// http get the object
666
- var objList []Network
666
+ var objList []* Network
667
667
err := httpGet (url , & objList )
668
668
if err != nil {
669
669
log .Errorf ("Error getting networks. Err: %v" , err )
@@ -723,12 +723,12 @@ func (c *ContivClient) PolicyPost(obj *Policy) error {
723
723
}
724
724
725
725
// PolicyList lists all policy objects
726
- func (c * ContivClient ) PolicyList () (* []Policy , error ) {
726
+ func (c * ContivClient ) PolicyList () (* []* Policy , error ) {
727
727
// build key and URL
728
728
url := c .baseURL + "/api/policys/"
729
729
730
730
// http get the object
731
- var objList []Policy
731
+ var objList []* Policy
732
732
err := httpGet (url , & objList )
733
733
if err != nil {
734
734
log .Errorf ("Error getting policys. Err: %v" , err )
@@ -788,12 +788,12 @@ func (c *ContivClient) RulePost(obj *Rule) error {
788
788
}
789
789
790
790
// RuleList lists all rule objects
791
- func (c * ContivClient ) RuleList () (* []Rule , error ) {
791
+ func (c * ContivClient ) RuleList () (* []* Rule , error ) {
792
792
// build key and URL
793
793
url := c .baseURL + "/api/rules/"
794
794
795
795
// http get the object
796
- var objList []Rule
796
+ var objList []* Rule
797
797
err := httpGet (url , & objList )
798
798
if err != nil {
799
799
log .Errorf ("Error getting rules. Err: %v" , err )
@@ -853,12 +853,12 @@ func (c *ContivClient) ServicePost(obj *Service) error {
853
853
}
854
854
855
855
// ServiceList lists all service objects
856
- func (c * ContivClient ) ServiceList () (* []Service , error ) {
856
+ func (c * ContivClient ) ServiceList () (* []* Service , error ) {
857
857
// build key and URL
858
858
url := c .baseURL + "/api/services/"
859
859
860
860
// http get the object
861
- var objList []Service
861
+ var objList []* Service
862
862
err := httpGet (url , & objList )
863
863
if err != nil {
864
864
log .Errorf ("Error getting services. Err: %v" , err )
@@ -918,12 +918,12 @@ func (c *ContivClient) ServiceInstancePost(obj *ServiceInstance) error {
918
918
}
919
919
920
920
// ServiceInstanceList lists all serviceInstance objects
921
- func (c * ContivClient ) ServiceInstanceList () (* []ServiceInstance , error ) {
921
+ func (c * ContivClient ) ServiceInstanceList () (* []* ServiceInstance , error ) {
922
922
// build key and URL
923
923
url := c .baseURL + "/api/serviceInstances/"
924
924
925
925
// http get the object
926
- var objList []ServiceInstance
926
+ var objList []* ServiceInstance
927
927
err := httpGet (url , & objList )
928
928
if err != nil {
929
929
log .Errorf ("Error getting serviceInstances. Err: %v" , err )
@@ -983,12 +983,12 @@ func (c *ContivClient) TenantPost(obj *Tenant) error {
983
983
}
984
984
985
985
// TenantList lists all tenant objects
986
- func (c * ContivClient ) TenantList () (* []Tenant , error ) {
986
+ func (c * ContivClient ) TenantList () (* []* Tenant , error ) {
987
987
// build key and URL
988
988
url := c .baseURL + "/api/tenants/"
989
989
990
990
// http get the object
991
- var objList []Tenant
991
+ var objList []* Tenant
992
992
err := httpGet (url , & objList )
993
993
if err != nil {
994
994
log .Errorf ("Error getting tenants. Err: %v" , err )
@@ -1048,12 +1048,12 @@ func (c *ContivClient) VolumePost(obj *Volume) error {
1048
1048
}
1049
1049
1050
1050
// VolumeList lists all volume objects
1051
- func (c * ContivClient ) VolumeList () (* []Volume , error ) {
1051
+ func (c * ContivClient ) VolumeList () (* []* Volume , error ) {
1052
1052
// build key and URL
1053
1053
url := c .baseURL + "/api/volumes/"
1054
1054
1055
1055
// http get the object
1056
- var objList []Volume
1056
+ var objList []* Volume
1057
1057
err := httpGet (url , & objList )
1058
1058
if err != nil {
1059
1059
log .Errorf ("Error getting volumes. Err: %v" , err )
@@ -1113,12 +1113,12 @@ func (c *ContivClient) VolumeProfilePost(obj *VolumeProfile) error {
1113
1113
}
1114
1114
1115
1115
// VolumeProfileList lists all volumeProfile objects
1116
- func (c * ContivClient ) VolumeProfileList () (* []VolumeProfile , error ) {
1116
+ func (c * ContivClient ) VolumeProfileList () (* []* VolumeProfile , error ) {
1117
1117
// build key and URL
1118
1118
url := c .baseURL + "/api/volumeProfiles/"
1119
1119
1120
1120
// http get the object
1121
- var objList []VolumeProfile
1121
+ var objList []* VolumeProfile
1122
1122
err := httpGet (url , & objList )
1123
1123
if err != nil {
1124
1124
log .Errorf ("Error getting volumeProfiles. Err: %v" , err )
0 commit comments