@@ -152,8 +152,7 @@ type AppProfile struct {
152
152
153
153
AppProfileName string `json:"appProfileName,omitempty"` // Application Profile Name
154
154
EndpointGroups []string `json:"endpointGroups,omitempty"`
155
- NetworkName string `json:"networkName,omitempty"` // Network of App Prof
156
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
155
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
157
156
158
157
// add link-sets and links
159
158
LinkSets AppProfileLinkSets `json:"link-sets,omitempty"`
@@ -165,8 +164,7 @@ type AppProfileLinkSets struct {
165
164
}
166
165
167
166
type AppProfileLinks struct {
168
- Network Link `json:"Network,omitempty"`
169
- Tenant Link `json:"Tenant,omitempty"`
167
+ Tenant Link `json:"Tenant,omitempty"`
170
168
}
171
169
172
170
type Bgp struct {
@@ -237,7 +235,6 @@ type Network struct {
237
235
}
238
236
239
237
type NetworkLinkSets struct {
240
- AppProfiles map [string ]Link `json:"AppProfiles,omitempty"`
241
238
EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
242
239
Servicelbs map [string ]Link `json:"Servicelbs,omitempty"`
243
240
Services map [string ]Link `json:"Services,omitempty"`
@@ -386,7 +383,7 @@ type VolumeProfileLinks struct {
386
383
// AppProfilePost posts the appProfile object
387
384
func (c * ContivClient ) AppProfilePost (obj * AppProfile ) error {
388
385
// build key and URL
389
- keyStr := obj .TenantName + ":" + obj .NetworkName + ":" + obj . AppProfileName
386
+ keyStr := obj .TenantName + ":" + obj .AppProfileName
390
387
url := c .baseURL + "/api/appProfiles/" + keyStr + "/"
391
388
392
389
// http post the object
@@ -416,9 +413,9 @@ func (c *ContivClient) AppProfileList() (*[]*AppProfile, error) {
416
413
}
417
414
418
415
// AppProfileGet gets the appProfile object
419
- func (c * ContivClient ) AppProfileGet (tenantName string , networkName string , appProfileName string ) (* AppProfile , error ) {
416
+ func (c * ContivClient ) AppProfileGet (tenantName string , appProfileName string ) (* AppProfile , error ) {
420
417
// build key and URL
421
- keyStr := tenantName + ":" + networkName + ":" + appProfileName
418
+ keyStr := tenantName + ":" + appProfileName
422
419
url := c .baseURL + "/api/appProfiles/" + keyStr + "/"
423
420
424
421
// http get the object
@@ -433,9 +430,9 @@ func (c *ContivClient) AppProfileGet(tenantName string, networkName string, appP
433
430
}
434
431
435
432
// AppProfileDelete deletes the appProfile object
436
- func (c * ContivClient ) AppProfileDelete (tenantName string , networkName string , appProfileName string ) error {
433
+ func (c * ContivClient ) AppProfileDelete (tenantName string , appProfileName string ) error {
437
434
// build key and URL
438
- keyStr := tenantName + ":" + networkName + ":" + appProfileName
435
+ keyStr := tenantName + ":" + appProfileName
439
436
url := c .baseURL + "/api/appProfiles/" + keyStr + "/"
440
437
441
438
// http get the object
@@ -516,7 +513,7 @@ func (c *ContivClient) BgpDelete(hostname string) error {
516
513
// EndpointGroupPost posts the endpointGroup object
517
514
func (c * ContivClient ) EndpointGroupPost (obj * EndpointGroup ) error {
518
515
// build key and URL
519
- keyStr := obj .TenantName + ":" + obj .NetworkName + ":" + obj . GroupName
516
+ keyStr := obj .TenantName + ":" + obj .GroupName
520
517
url := c .baseURL + "/api/endpointGroups/" + keyStr + "/"
521
518
522
519
// http post the object
@@ -546,9 +543,9 @@ func (c *ContivClient) EndpointGroupList() (*[]*EndpointGroup, error) {
546
543
}
547
544
548
545
// EndpointGroupGet gets the endpointGroup object
549
- func (c * ContivClient ) EndpointGroupGet (tenantName string , networkName string , groupName string ) (* EndpointGroup , error ) {
546
+ func (c * ContivClient ) EndpointGroupGet (tenantName string , groupName string ) (* EndpointGroup , error ) {
550
547
// build key and URL
551
- keyStr := tenantName + ":" + networkName + ":" + groupName
548
+ keyStr := tenantName + ":" + groupName
552
549
url := c .baseURL + "/api/endpointGroups/" + keyStr + "/"
553
550
554
551
// http get the object
@@ -563,9 +560,9 @@ func (c *ContivClient) EndpointGroupGet(tenantName string, networkName string, g
563
560
}
564
561
565
562
// EndpointGroupDelete deletes the endpointGroup object
566
- func (c * ContivClient ) EndpointGroupDelete (tenantName string , networkName string , groupName string ) error {
563
+ func (c * ContivClient ) EndpointGroupDelete (tenantName string , groupName string ) error {
567
564
// build key and URL
568
- keyStr := tenantName + ":" + networkName + ":" + groupName
565
+ keyStr := tenantName + ":" + groupName
569
566
url := c .baseURL + "/api/endpointGroups/" + keyStr + "/"
570
567
571
568
// http get the object
0 commit comments