Skip to content

Commit 185e865

Browse files
gaurav-dalvishaleman
authored andcommitted
Adding inspect support for endpointGroup (#36)
1 parent 731af51 commit 185e865

File tree

4 files changed

+74
-0
lines changed

4 files changed

+74
-0
lines changed

client/contivModelClient.go

+10
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,18 @@ type EndpointGroupLinks struct {
237237
Tenant Link `json:"Tenant,omitempty"`
238238
}
239239

240+
type EndpointGroupOper struct {
241+
Endpoints []EndpointOper `json:"endpoints,omitempty"`
242+
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
243+
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
244+
PktTag int `json:"pktTag,omitempty"` // internal packet tag
245+
246+
}
247+
240248
type EndpointGroupInspect struct {
241249
Config EndpointGroup
250+
251+
Oper EndpointGroupOper
242252
}
243253

244254
type ExtContractsGroup struct {

client/contivModelClient.py

+10
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,16 @@ def listEndpointGroup(self):
201201

202202

203203

204+
# Inspect endpointGroup
205+
def createEndpointGroup(self, obj):
206+
postUrl = self.baseUrl + '/api/v1/inspect/endpointGroup/' + obj.tenantName + ":" + obj.groupName + '/'
207+
208+
retDate = urllib2.urlopen(postUrl)
209+
if retData == "Error":
210+
errorExit("list EndpointGroup failed")
211+
212+
return json.loads(retData)
213+
204214

205215
# Create extContractsGroup
206216
def createExtContractsGroup(self, obj):

contivModel.go

+35
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,18 @@ type EndpointGroupLinks struct {
111111
Tenant modeldb.Link `json:"Tenant,omitempty"`
112112
}
113113

114+
type EndpointGroupOper struct {
115+
Endpoints []EndpointOper `json:"endpoints,omitempty"`
116+
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
117+
NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
118+
PktTag int `json:"pktTag,omitempty"` // internal packet tag
119+
120+
}
121+
114122
type EndpointGroupInspect struct {
115123
Config EndpointGroup
124+
125+
Oper EndpointGroupOper
116126
}
117127

118128
type ExtContractsGroup struct {
@@ -441,6 +451,8 @@ type EndpointCallbacks interface {
441451
}
442452

443453
type EndpointGroupCallbacks interface {
454+
EndpointGroupGetOper(endpointGroup *EndpointGroupInspect) error
455+
444456
EndpointGroupCreate(endpointGroup *EndpointGroup) error
445457
EndpointGroupUpdate(endpointGroup, params *EndpointGroup) error
446458
EndpointGroupDelete(endpointGroup *EndpointGroup) error
@@ -1448,10 +1460,33 @@ func httpInspectEndpointGroup(w http.ResponseWriter, r *http.Request, vars map[s
14481460
}
14491461
obj.Config = *objConfig
14501462

1463+
if err := GetOperEndpointGroup(&obj); err != nil {
1464+
log.Errorf("GetEndpointGroup error for: %+v. Err: %v", obj, err)
1465+
return nil, err
1466+
}
1467+
14511468
// Return the obj
14521469
return &obj, nil
14531470
}
14541471

1472+
// Get a endpointGroupOper object
1473+
func GetOperEndpointGroup(obj *EndpointGroupInspect) error {
1474+
// Check if we handle this object
1475+
if objCallbackHandler.EndpointGroupCb == nil {
1476+
log.Errorf("No callback registered for endpointGroup object")
1477+
return errors.New("Invalid object type")
1478+
}
1479+
1480+
// Perform callback
1481+
err := objCallbackHandler.EndpointGroupCb.EndpointGroupGetOper(obj)
1482+
if err != nil {
1483+
log.Errorf("EndpointGroupDelete retruned error for: %+v. Err: %v", obj, err)
1484+
return err
1485+
}
1486+
1487+
return nil
1488+
}
1489+
14551490
// LIST REST call
14561491
func httpListEndpointGroups(w http.ResponseWriter, r *http.Request, vars map[string]string) (interface{}, error) {
14571492
log.Debugf("Received httpListEndpointGroups: %+v", vars)

endpointGroup.json

+19
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,25 @@
4949
"ShowSummary": true
5050
}
5151
},
52+
"operProperties": {
53+
"pktTag": {
54+
"type": "int",
55+
"title": "internal packet tag"
56+
},
57+
"externalPktTag": {
58+
"type": "int",
59+
"title": "external packet tag"
60+
},
61+
"numEndpoints": {
62+
"type": "int",
63+
"title": "external packet tag"
64+
},
65+
"endpoints": {
66+
"type": "array",
67+
"items": "endpoint",
68+
"title": "endpoints in the group"
69+
}
70+
},
5271
"link-sets": {
5372
"services": {
5473
"ref": "service"

0 commit comments

Comments
 (0)