@@ -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,11 @@ 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"`
350
346
}
351
347
352
348
type ServiceLB struct {
@@ -374,12 +370,12 @@ type Tenant struct {
374
370
}
375
371
376
372
type TenantLinkSets struct {
377
- AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
378
- EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
379
- Networks map [string ]Link `json:"Networks,omitempty"`
380
- Policies map [string ]Link `json:"Policies,omitempty"`
381
- VolumeProfiles map [string ]Link `json:"VolumeProfiles,omitempty"`
382
- 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"`
383
379
}
384
380
385
381
type Volume struct {
@@ -399,11 +395,11 @@ type Volume struct {
399
395
}
400
396
401
397
type VolumeLinkSets struct {
402
- ServiceInstances map [string ]Link `json:"ServiceInstances,omitempty"`
398
+ ServiceInstances map [string ]modeldb. Link `json:"ServiceInstances,omitempty"`
403
399
}
404
400
405
401
type VolumeLinks struct {
406
- Tenant Link `json:"Tenant,omitempty"`
402
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
407
403
}
408
404
409
405
type VolumeProfile struct {
@@ -423,11 +419,11 @@ type VolumeProfile struct {
423
419
}
424
420
425
421
type VolumeProfileLinkSets struct {
426
- Services map [string ]Link `json:"Services,omitempty"`
422
+ Services map [string ]modeldb. Link `json:"Services,omitempty"`
427
423
}
428
424
429
425
type VolumeProfileLinks struct {
430
- Tenant Link `json:"Tenant,omitempty"`
426
+ Tenant modeldb. Link `json:"Tenant,omitempty"`
431
427
}
432
428
433
429
// AppProfilePost posts the appProfile object
0 commit comments