@@ -142,24 +142,27 @@ func NewContivClient(baseURL string) (*ContivClient, error) {
142
142
return & client , nil
143
143
}
144
144
145
- type App struct {
145
+ type AppProfile struct {
146
146
// every object has a key
147
147
Key string `json:"key,omitempty"`
148
148
149
- AppName string `json:"appName,omitempty"` // Application Name
150
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
149
+ AppProfileName string `json:"appProfileName,omitempty"` // Application Profile Name
150
+ EndpointGroups []string `json:"endpointGroups,omitempty"`
151
+ NetworkName string `json:"networkName,omitempty"` // Network of App Prof
152
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
151
153
152
154
// add link-sets and links
153
- LinkSets AppLinkSets `json:"link-sets,omitempty"`
154
- Links AppLinks `json:"links,omitempty"`
155
+ LinkSets AppProfileLinkSets `json:"link-sets,omitempty"`
156
+ Links AppProfileLinks `json:"links,omitempty"`
155
157
}
156
158
157
- type AppLinkSets struct {
158
- Services map [string ]modeldb.Link `json:"Services ,omitempty"`
159
+ type AppProfileLinkSets struct {
160
+ EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups ,omitempty"`
159
161
}
160
162
161
- type AppLinks struct {
162
- Tenant modeldb.Link `json:"Tenant,omitempty"`
163
+ type AppProfileLinks struct {
164
+ Network modeldb.Link `json:"Network,omitempty"`
165
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
163
166
}
164
167
165
168
type EndpointGroup struct {
@@ -183,8 +186,9 @@ type EndpointGroupLinkSets struct {
183
186
}
184
187
185
188
type EndpointGroupLinks struct {
186
- Network modeldb.Link `json:"Network,omitempty"`
187
- Tenant modeldb.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"`
188
192
}
189
193
190
194
type Global struct {
@@ -227,6 +231,7 @@ type Network struct {
227
231
}
228
232
229
233
type NetworkLinkSets struct {
234
+ AppProfiles map [string ]modeldb.Link `json:"AppProfiles,omitempty"`
230
235
EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
231
236
Services map [string ]modeldb.Link `json:"Services,omitempty"`
232
237
}
@@ -351,7 +356,7 @@ type Tenant struct {
351
356
}
352
357
353
358
type TenantLinkSets struct {
354
- Apps map [string ]modeldb.Link `json:"Apps ,omitempty"`
359
+ AppProfiles map [string ]modeldb.Link `json:"AppProfiles ,omitempty"`
355
360
EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
356
361
Networks map [string ]modeldb.Link `json:"Networks,omitempty"`
357
362
Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
@@ -407,65 +412,65 @@ type VolumeProfileLinks struct {
407
412
Tenant modeldb.Link `json:"Tenant,omitempty"`
408
413
}
409
414
410
- // AppPost posts the app object
411
- func (c * ContivClient ) AppPost (obj * App ) error {
415
+ // AppProfilePost posts the appProfile object
416
+ func (c * ContivClient ) AppProfilePost (obj * AppProfile ) error {
412
417
// build key and URL
413
- keyStr := obj .TenantName + ":" + obj .AppName
414
- url := c .baseURL + "/api/apps /" + keyStr + "/"
418
+ keyStr := obj .TenantName + ":" + obj .NetworkName + ":" + obj . AppProfileName
419
+ url := c .baseURL + "/api/appProfiles /" + keyStr + "/"
415
420
416
421
// http post the object
417
422
err := httpPost (url , obj )
418
423
if err != nil {
419
- log .Debugf ("Error creating app %+v. Err: %v" , obj , err )
424
+ log .Debugf ("Error creating appProfile %+v. Err: %v" , obj , err )
420
425
return err
421
426
}
422
427
423
428
return nil
424
429
}
425
430
426
- // AppList lists all app objects
427
- func (c * ContivClient ) AppList () (* []* App , error ) {
431
+ // AppProfileList lists all appProfile objects
432
+ func (c * ContivClient ) AppProfileList () (* []* AppProfile , error ) {
428
433
// build key and URL
429
- url := c .baseURL + "/api/apps /"
434
+ url := c .baseURL + "/api/appProfiles /"
430
435
431
436
// http get the object
432
- var objList []* App
437
+ var objList []* AppProfile
433
438
err := httpGet (url , & objList )
434
439
if err != nil {
435
- log .Debugf ("Error getting apps . Err: %v" , err )
440
+ log .Debugf ("Error getting appProfiles . Err: %v" , err )
436
441
return nil , err
437
442
}
438
443
439
444
return & objList , nil
440
445
}
441
446
442
- // AppGet gets the app object
443
- func (c * ContivClient ) AppGet (tenantName string , appName string ) (* App , error ) {
447
+ // AppProfileGet gets the appProfile object
448
+ func (c * ContivClient ) AppProfileGet (tenantName string , networkName string , appProfileName string ) (* AppProfile , error ) {
444
449
// build key and URL
445
- keyStr := tenantName + ":" + appName
446
- url := c .baseURL + "/api/apps /" + keyStr + "/"
450
+ keyStr := tenantName + ":" + networkName + ":" + appProfileName
451
+ url := c .baseURL + "/api/appProfiles /" + keyStr + "/"
447
452
448
453
// http get the object
449
- var obj App
454
+ var obj AppProfile
450
455
err := httpGet (url , & obj )
451
456
if err != nil {
452
- log .Debugf ("Error getting app %+v. Err: %v" , keyStr , err )
457
+ log .Debugf ("Error getting appProfile %+v. Err: %v" , keyStr , err )
453
458
return nil , err
454
459
}
455
460
456
461
return & obj , nil
457
462
}
458
463
459
- // AppDelete deletes the app object
460
- func (c * ContivClient ) AppDelete (tenantName string , appName string ) error {
464
+ // AppProfileDelete deletes the appProfile object
465
+ func (c * ContivClient ) AppProfileDelete (tenantName string , networkName string , appProfileName string ) error {
461
466
// build key and URL
462
- keyStr := tenantName + ":" + appName
463
- url := c .baseURL + "/api/apps /" + keyStr + "/"
467
+ keyStr := tenantName + ":" + networkName + ":" + appProfileName
468
+ url := c .baseURL + "/api/appProfiles /" + keyStr + "/"
464
469
465
470
// http get the object
466
471
err := httpDelete (url )
467
472
if err != nil {
468
- log .Debugf ("Error deleting app %s. Err: %v" , keyStr , err )
473
+ log .Debugf ("Error deleting appProfile %s. Err: %v" , keyStr , err )
469
474
return err
470
475
}
471
476
0 commit comments