Skip to content

Commit 0a63e9c

Browse files
author
Vipin Jain
committed
add versioning in api, other fixes
1 parent 5d42fe7 commit 0a63e9c

File tree

3 files changed

+188
-45
lines changed

3 files changed

+188
-45
lines changed

client/contivModelClient.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ func (c *ContivClient) AppProfileGet(tenantName string, appProfileName string) (
492492
return &obj, nil
493493
}
494494

495-
// AppProfileGetInspect gets the appProfileInspect object
495+
// AppProfileInspect gets the appProfileInspect object
496496
func (c *ContivClient) AppProfileInspect(tenantName string, appProfileName string) (*AppProfileInspect, error) {
497497
// build key and URL
498498
keyStr := tenantName + ":" + appProfileName
@@ -574,7 +574,7 @@ func (c *ContivClient) BgpGet(hostname string) (*Bgp, error) {
574574
return &obj, nil
575575
}
576576

577-
// BgpGetInspect gets the BgpInspect object
577+
// BgpInspect gets the BgpInspect object
578578
func (c *ContivClient) BgpInspect(hostname string) (*BgpInspect, error) {
579579
// build key and URL
580580
keyStr := hostname
@@ -656,7 +656,7 @@ func (c *ContivClient) EndpointGroupGet(tenantName string, groupName string) (*E
656656
return &obj, nil
657657
}
658658

659-
// EndpointGroupGetInspect gets the endpointGroupInspect object
659+
// EndpointGroupInspect gets the endpointGroupInspect object
660660
func (c *ContivClient) EndpointGroupInspect(tenantName string, groupName string) (*EndpointGroupInspect, error) {
661661
// build key and URL
662662
keyStr := tenantName + ":" + groupName
@@ -803,7 +803,7 @@ func (c *ContivClient) GlobalGet(name string) (*Global, error) {
803803
return &obj, nil
804804
}
805805

806-
// GlobalGetInspect gets the globalInspect object
806+
// GlobalInspect gets the globalInspect object
807807
func (c *ContivClient) GlobalInspect(name string) (*GlobalInspect, error) {
808808
// build key and URL
809809
keyStr := name
@@ -885,7 +885,7 @@ func (c *ContivClient) NetworkGet(tenantName string, networkName string) (*Netwo
885885
return &obj, nil
886886
}
887887

888-
// NetworkGetInspect gets the networkInspect object
888+
// NetworkInspect gets the networkInspect object
889889
func (c *ContivClient) NetworkInspect(tenantName string, networkName string) (*NetworkInspect, error) {
890890
// build key and URL
891891
keyStr := tenantName + ":" + networkName
@@ -967,7 +967,7 @@ func (c *ContivClient) PolicyGet(tenantName string, policyName string) (*Policy,
967967
return &obj, nil
968968
}
969969

970-
// PolicyGetInspect gets the policyInspect object
970+
// PolicyInspect gets the policyInspect object
971971
func (c *ContivClient) PolicyInspect(tenantName string, policyName string) (*PolicyInspect, error) {
972972
// build key and URL
973973
keyStr := tenantName + ":" + policyName
@@ -1049,7 +1049,7 @@ func (c *ContivClient) RuleGet(tenantName string, policyName string, ruleId stri
10491049
return &obj, nil
10501050
}
10511051

1052-
// RuleGetInspect gets the ruleInspect object
1052+
// RuleInspect gets the ruleInspect object
10531053
func (c *ContivClient) RuleInspect(tenantName string, policyName string, ruleId string) (*RuleInspect, error) {
10541054
// build key and URL
10551055
keyStr := tenantName + ":" + policyName + ":" + ruleId
@@ -1131,7 +1131,7 @@ func (c *ContivClient) ServiceLBGet(tenantName string, serviceName string) (*Ser
11311131
return &obj, nil
11321132
}
11331133

1134-
// ServiceLBGetInspect gets the serviceLBInspect object
1134+
// ServiceLBInspect gets the serviceLBInspect object
11351135
func (c *ContivClient) ServiceLBInspect(tenantName string, serviceName string) (*ServiceLBInspect, error) {
11361136
// build key and URL
11371137
keyStr := tenantName + ":" + serviceName
@@ -1213,7 +1213,7 @@ func (c *ContivClient) TenantGet(tenantName string) (*Tenant, error) {
12131213
return &obj, nil
12141214
}
12151215

1216-
// TenantGetInspect gets the tenantInspect object
1216+
// TenantInspect gets the tenantInspect object
12171217
func (c *ContivClient) TenantInspect(tenantName string) (*TenantInspect, error) {
12181218
// build key and URL
12191219
keyStr := tenantName
@@ -1295,7 +1295,7 @@ func (c *ContivClient) VolumeGet(tenantName string, volumeName string) (*Volume,
12951295
return &obj, nil
12961296
}
12971297

1298-
// VolumeGetInspect gets the volumeInspect object
1298+
// VolumeInspect gets the volumeInspect object
12991299
func (c *ContivClient) VolumeInspect(tenantName string, volumeName string) (*VolumeInspect, error) {
13001300
// build key and URL
13011301
keyStr := tenantName + ":" + volumeName
@@ -1377,7 +1377,7 @@ func (c *ContivClient) VolumeProfileGet(tenantName string, volumeProfileName str
13771377
return &obj, nil
13781378
}
13791379

1380-
// VolumeProfileGetInspect gets the volumeProfileInspect object
1380+
// VolumeProfileInspect gets the volumeProfileInspect object
13811381
func (c *ContivClient) VolumeProfileInspect(tenantName string, volumeProfileName string) (*VolumeProfileInspect, error) {
13821382
// build key and URL
13831383
keyStr := tenantName + ":" + volumeProfileName

client/contivModelClient.py

+33-33
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, baseUrl):
7474
self.baseUrl = baseUrl
7575
# Create appProfile
7676
def createAppProfile(self, obj):
77-
postUrl = self.baseUrl + '/api/appProfiles/' + obj.tenantName + ":" + obj.appProfileName + '/'
77+
postUrl = self.baseUrl + '/api/v1/appProfiles/' + obj.tenantName + ":" + obj.appProfileName + '/'
7878

7979
jdata = json.dumps({
8080
"appProfileName": obj.appProfileName,
@@ -91,7 +91,7 @@ def createAppProfile(self, obj):
9191
# Delete appProfile
9292
def deleteAppProfile(self, tenantName, appProfileName):
9393
# Delete AppProfile
94-
deleteUrl = self.baseUrl + '/api/appProfiles/' + tenantName + ":" + appProfileName + '/'
94+
deleteUrl = self.baseUrl + '/api/v1/appProfiles/' + tenantName + ":" + appProfileName + '/'
9595
response = httpDelete(deleteUrl)
9696

9797
if response == "Error":
@@ -100,14 +100,14 @@ def deleteAppProfile(self, tenantName, appProfileName):
100100
# List all appProfile objects
101101
def listAppProfile(self):
102102
# Get a list of appProfile objects
103-
retDate = urllib2.urlopen(self.baseUrl + '/api/appProfiles/')
103+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/appProfiles/')
104104
if retData == "Error":
105105
errorExit("list AppProfile failed")
106106

107107
return json.loads(retData)
108108
# Create Bgp
109109
def createBgp(self, obj):
110-
postUrl = self.baseUrl + '/api/Bgps/' + obj.hostname + '/'
110+
postUrl = self.baseUrl + '/api/v1/Bgps/' + obj.hostname + '/'
111111

112112
jdata = json.dumps({
113113
"as": obj.as,
@@ -126,7 +126,7 @@ def createBgp(self, obj):
126126
# Delete Bgp
127127
def deleteBgp(self, hostname):
128128
# Delete Bgp
129-
deleteUrl = self.baseUrl + '/api/Bgps/' + hostname + '/'
129+
deleteUrl = self.baseUrl + '/api/v1/Bgps/' + hostname + '/'
130130
response = httpDelete(deleteUrl)
131131

132132
if response == "Error":
@@ -135,14 +135,14 @@ def deleteBgp(self, hostname):
135135
# List all Bgp objects
136136
def listBgp(self):
137137
# Get a list of Bgp objects
138-
retDate = urllib2.urlopen(self.baseUrl + '/api/Bgps/')
138+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/Bgps/')
139139
if retData == "Error":
140140
errorExit("list Bgp failed")
141141

142142
return json.loads(retData)
143143
# Create endpointGroup
144144
def createEndpointGroup(self, obj):
145-
postUrl = self.baseUrl + '/api/endpointGroups/' + obj.tenantName + ":" + obj.groupName + '/'
145+
postUrl = self.baseUrl + '/api/v1/endpointGroups/' + obj.tenantName + ":" + obj.groupName + '/'
146146

147147
jdata = json.dumps({
148148
"extContractsGrps": obj.extContractsGrps,
@@ -161,7 +161,7 @@ def createEndpointGroup(self, obj):
161161
# Delete endpointGroup
162162
def deleteEndpointGroup(self, tenantName, groupName):
163163
# Delete EndpointGroup
164-
deleteUrl = self.baseUrl + '/api/endpointGroups/' + tenantName + ":" + groupName + '/'
164+
deleteUrl = self.baseUrl + '/api/v1/endpointGroups/' + tenantName + ":" + groupName + '/'
165165
response = httpDelete(deleteUrl)
166166

167167
if response == "Error":
@@ -170,7 +170,7 @@ def deleteEndpointGroup(self, tenantName, groupName):
170170
# List all endpointGroup objects
171171
def listEndpointGroup(self):
172172
# Get a list of endpointGroup objects
173-
retDate = urllib2.urlopen(self.baseUrl + '/api/endpointGroups/')
173+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/endpointGroups/')
174174
if retData == "Error":
175175
errorExit("list EndpointGroup failed")
176176

@@ -211,7 +211,7 @@ def listExtContractsGroup(self):
211211
return json.loads(retData)
212212
# Create global
213213
def createGlobal(self, obj):
214-
postUrl = self.baseUrl + '/api/globals/' + obj.name + '/'
214+
postUrl = self.baseUrl + '/api/v1/globals/' + obj.name + '/'
215215

216216
jdata = json.dumps({
217217
"name": obj.name,
@@ -229,7 +229,7 @@ def createGlobal(self, obj):
229229
# Delete global
230230
def deleteGlobal(self, name):
231231
# Delete Global
232-
deleteUrl = self.baseUrl + '/api/globals/' + name + '/'
232+
deleteUrl = self.baseUrl + '/api/v1/globals/' + name + '/'
233233
response = httpDelete(deleteUrl)
234234

235235
if response == "Error":
@@ -238,14 +238,14 @@ def deleteGlobal(self, name):
238238
# List all global objects
239239
def listGlobal(self):
240240
# Get a list of global objects
241-
retDate = urllib2.urlopen(self.baseUrl + '/api/globals/')
241+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/globals/')
242242
if retData == "Error":
243243
errorExit("list Global failed")
244244

245245
return json.loads(retData)
246246
# Create network
247247
def createNetwork(self, obj):
248-
postUrl = self.baseUrl + '/api/networks/' + obj.tenantName + ":" + obj.networkName + '/'
248+
postUrl = self.baseUrl + '/api/v1/networks/' + obj.tenantName + ":" + obj.networkName + '/'
249249

250250
jdata = json.dumps({
251251
"encap": obj.encap,
@@ -268,7 +268,7 @@ def createNetwork(self, obj):
268268
# Delete network
269269
def deleteNetwork(self, tenantName, networkName):
270270
# Delete Network
271-
deleteUrl = self.baseUrl + '/api/networks/' + tenantName + ":" + networkName + '/'
271+
deleteUrl = self.baseUrl + '/api/v1/networks/' + tenantName + ":" + networkName + '/'
272272
response = httpDelete(deleteUrl)
273273

274274
if response == "Error":
@@ -277,14 +277,14 @@ def deleteNetwork(self, tenantName, networkName):
277277
# List all network objects
278278
def listNetwork(self):
279279
# Get a list of network objects
280-
retDate = urllib2.urlopen(self.baseUrl + '/api/networks/')
280+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/networks/')
281281
if retData == "Error":
282282
errorExit("list Network failed")
283283

284284
return json.loads(retData)
285285
# Create policy
286286
def createPolicy(self, obj):
287-
postUrl = self.baseUrl + '/api/policys/' + obj.tenantName + ":" + obj.policyName + '/'
287+
postUrl = self.baseUrl + '/api/v1/policys/' + obj.tenantName + ":" + obj.policyName + '/'
288288

289289
jdata = json.dumps({
290290
"policyName": obj.policyName,
@@ -300,7 +300,7 @@ def createPolicy(self, obj):
300300
# Delete policy
301301
def deletePolicy(self, tenantName, policyName):
302302
# Delete Policy
303-
deleteUrl = self.baseUrl + '/api/policys/' + tenantName + ":" + policyName + '/'
303+
deleteUrl = self.baseUrl + '/api/v1/policys/' + tenantName + ":" + policyName + '/'
304304
response = httpDelete(deleteUrl)
305305

306306
if response == "Error":
@@ -309,14 +309,14 @@ def deletePolicy(self, tenantName, policyName):
309309
# List all policy objects
310310
def listPolicy(self):
311311
# Get a list of policy objects
312-
retDate = urllib2.urlopen(self.baseUrl + '/api/policys/')
312+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/policys/')
313313
if retData == "Error":
314314
errorExit("list Policy failed")
315315

316316
return json.loads(retData)
317317
# Create rule
318318
def createRule(self, obj):
319-
postUrl = self.baseUrl + '/api/rules/' + obj.tenantName + ":" + obj.policyName + ":" + obj.ruleId + '/'
319+
postUrl = self.baseUrl + '/api/v1/rules/' + obj.tenantName + ":" + obj.policyName + ":" + obj.ruleId + '/'
320320

321321
jdata = json.dumps({
322322
"action": obj.action,
@@ -344,7 +344,7 @@ def createRule(self, obj):
344344
# Delete rule
345345
def deleteRule(self, tenantName, policyName, ruleId):
346346
# Delete Rule
347-
deleteUrl = self.baseUrl + '/api/rules/' + tenantName + ":" + policyName + ":" + ruleId + '/'
347+
deleteUrl = self.baseUrl + '/api/v1/rules/' + tenantName + ":" + policyName + ":" + ruleId + '/'
348348
response = httpDelete(deleteUrl)
349349

350350
if response == "Error":
@@ -353,14 +353,14 @@ def deleteRule(self, tenantName, policyName, ruleId):
353353
# List all rule objects
354354
def listRule(self):
355355
# Get a list of rule objects
356-
retDate = urllib2.urlopen(self.baseUrl + '/api/rules/')
356+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/rules/')
357357
if retData == "Error":
358358
errorExit("list Rule failed")
359359

360360
return json.loads(retData)
361361
# Create serviceLB
362362
def createServiceLB(self, obj):
363-
postUrl = self.baseUrl + '/api/serviceLBs/' + obj.tenantName + ":" + obj.serviceName + '/'
363+
postUrl = self.baseUrl + '/api/v1/serviceLBs/' + obj.tenantName + ":" + obj.serviceName + '/'
364364

365365
jdata = json.dumps({
366366
"ipAddress": obj.ipAddress,
@@ -380,7 +380,7 @@ def createServiceLB(self, obj):
380380
# Delete serviceLB
381381
def deleteServiceLB(self, tenantName, serviceName):
382382
# Delete ServiceLB
383-
deleteUrl = self.baseUrl + '/api/serviceLBs/' + tenantName + ":" + serviceName + '/'
383+
deleteUrl = self.baseUrl + '/api/v1/serviceLBs/' + tenantName + ":" + serviceName + '/'
384384
response = httpDelete(deleteUrl)
385385

386386
if response == "Error":
@@ -389,14 +389,14 @@ def deleteServiceLB(self, tenantName, serviceName):
389389
# List all serviceLB objects
390390
def listServiceLB(self):
391391
# Get a list of serviceLB objects
392-
retDate = urllib2.urlopen(self.baseUrl + '/api/serviceLBs/')
392+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/serviceLBs/')
393393
if retData == "Error":
394394
errorExit("list ServiceLB failed")
395395

396396
return json.loads(retData)
397397
# Create tenant
398398
def createTenant(self, obj):
399-
postUrl = self.baseUrl + '/api/tenants/' + obj.tenantName + '/'
399+
postUrl = self.baseUrl + '/api/v1/tenants/' + obj.tenantName + '/'
400400

401401
jdata = json.dumps({
402402
"defaultNetwork": obj.defaultNetwork,
@@ -412,7 +412,7 @@ def createTenant(self, obj):
412412
# Delete tenant
413413
def deleteTenant(self, tenantName):
414414
# Delete Tenant
415-
deleteUrl = self.baseUrl + '/api/tenants/' + tenantName + '/'
415+
deleteUrl = self.baseUrl + '/api/v1/tenants/' + tenantName + '/'
416416
response = httpDelete(deleteUrl)
417417

418418
if response == "Error":
@@ -421,14 +421,14 @@ def deleteTenant(self, tenantName):
421421
# List all tenant objects
422422
def listTenant(self):
423423
# Get a list of tenant objects
424-
retDate = urllib2.urlopen(self.baseUrl + '/api/tenants/')
424+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/tenants/')
425425
if retData == "Error":
426426
errorExit("list Tenant failed")
427427

428428
return json.loads(retData)
429429
# Create volume
430430
def createVolume(self, obj):
431-
postUrl = self.baseUrl + '/api/volumes/' + obj.tenantName + ":" + obj.volumeName + '/'
431+
postUrl = self.baseUrl + '/api/v1/volumes/' + obj.tenantName + ":" + obj.volumeName + '/'
432432

433433
jdata = json.dumps({
434434
"datastoreType": obj.datastoreType,
@@ -448,7 +448,7 @@ def createVolume(self, obj):
448448
# Delete volume
449449
def deleteVolume(self, tenantName, volumeName):
450450
# Delete Volume
451-
deleteUrl = self.baseUrl + '/api/volumes/' + tenantName + ":" + volumeName + '/'
451+
deleteUrl = self.baseUrl + '/api/v1/volumes/' + tenantName + ":" + volumeName + '/'
452452
response = httpDelete(deleteUrl)
453453

454454
if response == "Error":
@@ -457,14 +457,14 @@ def deleteVolume(self, tenantName, volumeName):
457457
# List all volume objects
458458
def listVolume(self):
459459
# Get a list of volume objects
460-
retDate = urllib2.urlopen(self.baseUrl + '/api/volumes/')
460+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/volumes/')
461461
if retData == "Error":
462462
errorExit("list Volume failed")
463463

464464
return json.loads(retData)
465465
# Create volumeProfile
466466
def createVolumeProfile(self, obj):
467-
postUrl = self.baseUrl + '/api/volumeProfiles/' + obj.tenantName + ":" + obj.volumeProfileName + '/'
467+
postUrl = self.baseUrl + '/api/v1/volumeProfiles/' + obj.tenantName + ":" + obj.volumeProfileName + '/'
468468

469469
jdata = json.dumps({
470470
"datastoreType": obj.datastoreType,
@@ -484,7 +484,7 @@ def createVolumeProfile(self, obj):
484484
# Delete volumeProfile
485485
def deleteVolumeProfile(self, tenantName, volumeProfileName):
486486
# Delete VolumeProfile
487-
deleteUrl = self.baseUrl + '/api/volumeProfiles/' + tenantName + ":" + volumeProfileName + '/'
487+
deleteUrl = self.baseUrl + '/api/v1/volumeProfiles/' + tenantName + ":" + volumeProfileName + '/'
488488
response = httpDelete(deleteUrl)
489489

490490
if response == "Error":
@@ -493,7 +493,7 @@ def deleteVolumeProfile(self, tenantName, volumeProfileName):
493493
# List all volumeProfile objects
494494
def listVolumeProfile(self):
495495
# Get a list of volumeProfile objects
496-
retDate = urllib2.urlopen(self.baseUrl + '/api/volumeProfiles/')
496+
retDate = urllib2.urlopen(self.baseUrl + '/api/v1/volumeProfiles/')
497497
if retData == "Error":
498498
errorExit("list VolumeProfile failed")
499499

0 commit comments

Comments
 (0)