@@ -11,15 +11,11 @@ import (
11
11
"io/ioutil"
12
12
"net/http"
13
13
14
+ "github.com/contiv/objdb/modeldb"
15
+
14
16
log "github.com/Sirupsen/logrus"
15
17
)
16
18
17
- // Link is a one way relattion between two objects
18
- type Link struct {
19
- ObjType string `json:"type,omitempty"`
20
- ObjKey string `json:"key,omitempty"`
21
- }
22
-
23
19
func httpGet (url string , jdata interface {}) error {
24
20
25
21
r , err := http .Get (url )
@@ -161,12 +157,12 @@ type AppProfile struct {
161
157
}
162
158
163
159
type AppProfileLinkSets struct {
164
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
160
+ EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
165
161
}
166
162
167
163
type AppProfileLinks struct {
168
- Network Link `json:"Network,omitempty"`
169
- Tenant Link `json:"Tenant,omitempty"`
164
+ Network modeldb. Link `json:"Network,omitempty"`
165
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
170
166
}
171
167
172
168
type EndpointGroup struct {
@@ -185,14 +181,14 @@ type EndpointGroup struct {
185
181
}
186
182
187
183
type EndpointGroupLinkSets struct {
188
- Policies map [string ]Link `json:"Policies,omitempty"`
189
- Services map [string ]Link `json:"Services,omitempty"`
184
+ Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
185
+ Services map [string ]modeldb. Link `json:"Services,omitempty"`
190
186
}
191
187
192
188
type EndpointGroupLinks struct {
193
- AppProfile Link `json:"AppProfile,omitempty"`
194
- Network Link `json:"Network,omitempty"`
195
- Tenant Link `json:"Tenant,omitempty"`
189
+ AppProfile modeldb. Link `json:"AppProfile,omitempty"`
190
+ Network modeldb. Link `json:"Network,omitempty"`
191
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
196
192
}
197
193
198
194
type Global struct {
@@ -236,13 +232,13 @@ type Network struct {
236
232
}
237
233
238
234
type NetworkLinkSets struct {
239
- AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
240
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
241
- Services map [string ]Link `json:"Services,omitempty"`
235
+ AppProfiles map [string ]modeldb. Link `json:"AppProfiles,omitempty"`
236
+ EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
237
+ Services map [string ]modeldb. Link `json:"Services,omitempty"`
242
238
}
243
239
244
240
type NetworkLinks struct {
245
- Tenant Link `json:"Tenant,omitempty"`
241
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
246
242
}
247
243
248
244
type Policy struct {
@@ -258,12 +254,12 @@ type Policy struct {
258
254
}
259
255
260
256
type PolicyLinkSets struct {
261
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
262
- Rules map [string ]Link `json:"Rules,omitempty"`
257
+ EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
258
+ Rules map [string ]modeldb. Link `json:"Rules,omitempty"`
263
259
}
264
260
265
261
type PolicyLinks struct {
266
- Tenant Link `json:"Tenant,omitempty"`
262
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
267
263
}
268
264
269
265
type Rule struct {
@@ -290,7 +286,7 @@ type Rule struct {
290
286
}
291
287
292
288
type RuleLinkSets struct {
293
- Policies map [string ]Link `json:"Policies,omitempty"`
289
+ Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
294
290
}
295
291
296
292
type Service struct {
@@ -316,14 +312,14 @@ type Service struct {
316
312
}
317
313
318
314
type ServiceLinkSets struct {
319
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
320
- Instances map [string ]Link `json:"Instances,omitempty"`
321
- Networks map [string ]Link `json:"Networks,omitempty"`
315
+ EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
316
+ Instances map [string ]modeldb. Link `json:"Instances,omitempty"`
317
+ Networks map [string ]modeldb. Link `json:"Networks,omitempty"`
322
318
}
323
319
324
320
type ServiceLinks struct {
325
- App Link `json:"App,omitempty"`
326
- VolumeProfile Link `json:"VolumeProfile,omitempty"`
321
+ App modeldb. Link `json:"App,omitempty"`
322
+ VolumeProfile modeldb. Link `json:"VolumeProfile,omitempty"`
327
323
}
328
324
329
325
type ServiceInstance struct {
@@ -342,11 +338,24 @@ type ServiceInstance struct {
342
338
}
343
339
344
340
type ServiceInstanceLinkSets struct {
345
- Volumes map [string ]Link `json:"Volumes,omitempty"`
341
+ Volumes map [string ]modeldb. Link `json:"Volumes,omitempty"`
346
342
}
347
343
348
344
type ServiceInstanceLinks struct {
349
- Service Link `json:"Service,omitempty"`
345
+ Service modeldb.Link `json:"Service,omitempty"`
346
+ }
347
+
348
+ type ServiceLB struct {
349
+ // every object has a key
350
+ Key string `json:"key,omitempty"`
351
+
352
+ IpAddress string `json:"ipAddress,omitempty"` // Service ip
353
+ Labels []string `json:"labels,omitempty"`
354
+ Network string `json:"network,omitempty"` // Service subnet
355
+ Ports []string `json:"ports,omitempty"`
356
+ ServiceName string `json:"serviceName,omitempty"` // service name
357
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
358
+
350
359
}
351
360
352
361
type Tenant struct {
@@ -361,12 +370,12 @@ type Tenant struct {
361
370
}
362
371
363
372
type TenantLinkSets struct {
364
- AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
365
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
366
- Networks map [string ]Link `json:"Networks,omitempty"`
367
- Policies map [string ]Link `json:"Policies,omitempty"`
368
- VolumeProfiles map [string ]Link `json:"VolumeProfiles,omitempty"`
369
- Volumes map [string ]Link `json:"Volumes,omitempty"`
373
+ AppProfiles map [string ]modeldb. Link `json:"AppProfiles,omitempty"`
374
+ EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
375
+ Networks map [string ]modeldb. Link `json:"Networks,omitempty"`
376
+ Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
377
+ VolumeProfiles map [string ]modeldb. Link `json:"VolumeProfiles,omitempty"`
378
+ Volumes map [string ]modeldb. Link `json:"Volumes,omitempty"`
370
379
}
371
380
372
381
type Volume struct {
@@ -386,11 +395,11 @@ type Volume struct {
386
395
}
387
396
388
397
type VolumeLinkSets struct {
389
- ServiceInstances map [string ]Link `json:"ServiceInstances,omitempty"`
398
+ ServiceInstances map [string ]modeldb. Link `json:"ServiceInstances,omitempty"`
390
399
}
391
400
392
401
type VolumeLinks struct {
393
- Tenant Link `json:"Tenant,omitempty"`
402
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
394
403
}
395
404
396
405
type VolumeProfile struct {
@@ -410,11 +419,11 @@ type VolumeProfile struct {
410
419
}
411
420
412
421
type VolumeProfileLinkSets struct {
413
- Services map [string ]Link `json:"Services,omitempty"`
422
+ Services map [string ]modeldb. Link `json:"Services,omitempty"`
414
423
}
415
424
416
425
type VolumeProfileLinks struct {
417
- Tenant Link `json:"Tenant,omitempty"`
426
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
418
427
}
419
428
420
429
// AppProfilePost posts the appProfile object
@@ -1002,6 +1011,71 @@ func (c *ContivClient) ServiceInstanceDelete(tenantName string, appName string,
1002
1011
return nil
1003
1012
}
1004
1013
1014
+ // ServiceLBPost posts the serviceLB object
1015
+ func (c * ContivClient ) ServiceLBPost (obj * ServiceLB ) error {
1016
+ // build key and URL
1017
+ keyStr := obj .ServiceName + ":" + obj .TenantName
1018
+ url := c .baseURL + "/api/serviceLBs/" + keyStr + "/"
1019
+
1020
+ // http post the object
1021
+ err := httpPost (url , obj )
1022
+ if err != nil {
1023
+ log .Debugf ("Error creating serviceLB %+v. Err: %v" , obj , err )
1024
+ return err
1025
+ }
1026
+
1027
+ return nil
1028
+ }
1029
+
1030
+ // ServiceLBList lists all serviceLB objects
1031
+ func (c * ContivClient ) ServiceLBList () (* []* ServiceLB , error ) {
1032
+ // build key and URL
1033
+ url := c .baseURL + "/api/serviceLBs/"
1034
+
1035
+ // http get the object
1036
+ var objList []* ServiceLB
1037
+ err := httpGet (url , & objList )
1038
+ if err != nil {
1039
+ log .Debugf ("Error getting serviceLBs. Err: %v" , err )
1040
+ return nil , err
1041
+ }
1042
+
1043
+ return & objList , nil
1044
+ }
1045
+
1046
+ // ServiceLBGet gets the serviceLB object
1047
+ func (c * ContivClient ) ServiceLBGet (serviceName string , tenantName string ) (* ServiceLB , error ) {
1048
+ // build key and URL
1049
+ keyStr := serviceName + ":" + tenantName
1050
+ url := c .baseURL + "/api/serviceLBs/" + keyStr + "/"
1051
+
1052
+ // http get the object
1053
+ var obj ServiceLB
1054
+ err := httpGet (url , & obj )
1055
+ if err != nil {
1056
+ log .Debugf ("Error getting serviceLB %+v. Err: %v" , keyStr , err )
1057
+ return nil , err
1058
+ }
1059
+
1060
+ return & obj , nil
1061
+ }
1062
+
1063
+ // ServiceLBDelete deletes the serviceLB object
1064
+ func (c * ContivClient ) ServiceLBDelete (serviceName string , tenantName string ) error {
1065
+ // build key and URL
1066
+ keyStr := serviceName + ":" + tenantName
1067
+ url := c .baseURL + "/api/serviceLBs/" + keyStr + "/"
1068
+
1069
+ // http get the object
1070
+ err := httpDelete (url )
1071
+ if err != nil {
1072
+ log .Debugf ("Error deleting serviceLB %s. Err: %v" , keyStr , err )
1073
+ return err
1074
+ }
1075
+
1076
+ return nil
1077
+ }
1078
+
1005
1079
// TenantPost posts the tenant object
1006
1080
func (c * ContivClient ) TenantPost (obj * Tenant ) error {
1007
1081
// build key and URL
0 commit comments