@@ -11,11 +11,15 @@ import (
11
11
"io/ioutil"
12
12
"net/http"
13
13
14
- "github.com/contiv/objdb/modeldb"
15
-
16
14
log "github.com/Sirupsen/logrus"
17
15
)
18
16
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
+
19
23
func httpGet (url string , jdata interface {}) error {
20
24
21
25
r , err := http .Get (url )
@@ -157,12 +161,12 @@ type AppProfile struct {
157
161
}
158
162
159
163
type AppProfileLinkSets struct {
160
- EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
164
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
161
165
}
162
166
163
167
type AppProfileLinks struct {
164
- Network modeldb. Link `json:"Network,omitempty"`
165
- Tenant modeldb. Link `json:"Tenant,omitempty"`
168
+ Network Link `json:"Network,omitempty"`
169
+ Tenant Link `json:"Tenant,omitempty"`
166
170
}
167
171
168
172
type EndpointGroup struct {
@@ -181,14 +185,14 @@ type EndpointGroup struct {
181
185
}
182
186
183
187
type EndpointGroupLinkSets struct {
184
- Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
185
- Services map [string ]modeldb. Link `json:"Services,omitempty"`
188
+ Policies map [string ]Link `json:"Policies,omitempty"`
189
+ Services map [string ]Link `json:"Services,omitempty"`
186
190
}
187
191
188
192
type EndpointGroupLinks struct {
189
- AppProfile modeldb. Link `json:"AppProfile,omitempty"`
190
- Network modeldb. Link `json:"Network,omitempty"`
191
- Tenant modeldb. Link `json:"Tenant,omitempty"`
193
+ AppProfile Link `json:"AppProfile,omitempty"`
194
+ Network Link `json:"Network,omitempty"`
195
+ Tenant Link `json:"Tenant,omitempty"`
192
196
}
193
197
194
198
type Global struct {
@@ -231,13 +235,13 @@ type Network struct {
231
235
}
232
236
233
237
type NetworkLinkSets struct {
234
- AppProfiles map [string ]modeldb. Link `json:"AppProfiles,omitempty"`
235
- EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
236
- Services map [string ]modeldb. Link `json:"Services,omitempty"`
238
+ AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
239
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
240
+ Services map [string ]Link `json:"Services,omitempty"`
237
241
}
238
242
239
243
type NetworkLinks struct {
240
- Tenant modeldb. Link `json:"Tenant,omitempty"`
244
+ Tenant Link `json:"Tenant,omitempty"`
241
245
}
242
246
243
247
type Policy struct {
@@ -253,12 +257,12 @@ type Policy struct {
253
257
}
254
258
255
259
type PolicyLinkSets struct {
256
- EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
257
- Rules map [string ]modeldb. Link `json:"Rules,omitempty"`
260
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
261
+ Rules map [string ]Link `json:"Rules,omitempty"`
258
262
}
259
263
260
264
type PolicyLinks struct {
261
- Tenant modeldb. Link `json:"Tenant,omitempty"`
265
+ Tenant Link `json:"Tenant,omitempty"`
262
266
}
263
267
264
268
type Rule struct {
@@ -285,7 +289,7 @@ type Rule struct {
285
289
}
286
290
287
291
type RuleLinkSets struct {
288
- Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
292
+ Policies map [string ]Link `json:"Policies,omitempty"`
289
293
}
290
294
291
295
type Service struct {
@@ -311,14 +315,14 @@ type Service struct {
311
315
}
312
316
313
317
type ServiceLinkSets struct {
314
- EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
315
- Instances map [string ]modeldb. Link `json:"Instances,omitempty"`
316
- Networks map [string ]modeldb. Link `json:"Networks,omitempty"`
318
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
319
+ Instances map [string ]Link `json:"Instances,omitempty"`
320
+ Networks map [string ]Link `json:"Networks,omitempty"`
317
321
}
318
322
319
323
type ServiceLinks struct {
320
- App modeldb. Link `json:"App,omitempty"`
321
- VolumeProfile modeldb. Link `json:"VolumeProfile,omitempty"`
324
+ App Link `json:"App,omitempty"`
325
+ VolumeProfile Link `json:"VolumeProfile,omitempty"`
322
326
}
323
327
324
328
type ServiceInstance struct {
@@ -337,11 +341,11 @@ type ServiceInstance struct {
337
341
}
338
342
339
343
type ServiceInstanceLinkSets struct {
340
- Volumes map [string ]modeldb. Link `json:"Volumes,omitempty"`
344
+ Volumes map [string ]Link `json:"Volumes,omitempty"`
341
345
}
342
346
343
347
type ServiceInstanceLinks struct {
344
- Service modeldb. Link `json:"Service,omitempty"`
348
+ Service Link `json:"Service,omitempty"`
345
349
}
346
350
347
351
type Tenant struct {
@@ -356,12 +360,12 @@ type Tenant struct {
356
360
}
357
361
358
362
type TenantLinkSets struct {
359
- AppProfiles map [string ]modeldb. Link `json:"AppProfiles,omitempty"`
360
- EndpointGroups map [string ]modeldb. Link `json:"EndpointGroups,omitempty"`
361
- Networks map [string ]modeldb. Link `json:"Networks,omitempty"`
362
- Policies map [string ]modeldb. Link `json:"Policies,omitempty"`
363
- VolumeProfiles map [string ]modeldb. Link `json:"VolumeProfiles,omitempty"`
364
- Volumes map [string ]modeldb. Link `json:"Volumes,omitempty"`
363
+ AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
364
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
365
+ Networks map [string ]Link `json:"Networks,omitempty"`
366
+ Policies map [string ]Link `json:"Policies,omitempty"`
367
+ VolumeProfiles map [string ]Link `json:"VolumeProfiles,omitempty"`
368
+ Volumes map [string ]Link `json:"Volumes,omitempty"`
365
369
}
366
370
367
371
type Volume struct {
@@ -381,11 +385,11 @@ type Volume struct {
381
385
}
382
386
383
387
type VolumeLinkSets struct {
384
- ServiceInstances map [string ]modeldb. Link `json:"ServiceInstances,omitempty"`
388
+ ServiceInstances map [string ]Link `json:"ServiceInstances,omitempty"`
385
389
}
386
390
387
391
type VolumeLinks struct {
388
- Tenant modeldb. Link `json:"Tenant,omitempty"`
392
+ Tenant Link `json:"Tenant,omitempty"`
389
393
}
390
394
391
395
type VolumeProfile struct {
@@ -405,11 +409,11 @@ type VolumeProfile struct {
405
409
}
406
410
407
411
type VolumeProfileLinkSets struct {
408
- Services map [string ]modeldb. Link `json:"Services,omitempty"`
412
+ Services map [string ]Link `json:"Services,omitempty"`
409
413
}
410
414
411
415
type VolumeProfileLinks struct {
412
- Tenant modeldb. Link `json:"Tenant,omitempty"`
416
+ Tenant Link `json:"Tenant,omitempty"`
413
417
}
414
418
415
419
// AppProfilePost posts the appProfile object
0 commit comments