Skip to content

Commit 19aff69

Browse files
dvavilishaleman
authored andcommitted
Update EndpointOper fields (#34)
1 parent 8e88827 commit 19aff69

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

client/contivModelClient.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -188,16 +188,16 @@ type BgpInspect struct {
188188
}
189189

190190
type EndpointOper struct {
191-
AttachUUID string `json:"attachUUID,omitempty"` //
192191
ContainerID string `json:"containerID,omitempty"` //
192+
ContainerName string `json:"containerName,omitempty"` //
193193
EndpointGroupID int `json:"endpointGroupId,omitempty"` //
194194
EndpointGroupKey string `json:"endpointGroupKey,omitempty"` //
195+
EndpointID string `json:"endpointID,omitempty"` //
195196
HomingHost string `json:"homingHost,omitempty"` //
196197
IntfName string `json:"intfName,omitempty"` //
197198
IpAddress []string `json:"ipAddress,omitempty"`
198199
Labels string `json:"labels,omitempty"` //
199200
MacAddress string `json:"macAddress,omitempty"` //
200-
Name string `json:"name,omitempty"` //
201201
Network string `json:"network,omitempty"` //
202202
ServiceName string `json:"serviceName,omitempty"` //
203203
VtepIP string `json:"vtepIP,omitempty"` //
@@ -696,9 +696,9 @@ func (c *ContivClient) BgpInspect(hostname string) (*BgpInspect, error) {
696696
}
697697

698698
// EndpointInspect gets the endpointInspect object
699-
func (c *ContivClient) EndpointInspect(name string) (*EndpointInspect, error) {
699+
func (c *ContivClient) EndpointInspect(endpointID string) (*EndpointInspect, error) {
700700
// build key and URL
701-
keyStr := name
701+
keyStr := endpointID
702702
url := c.baseURL + "/api/v1/inspect/endpoints/" + keyStr + "/"
703703

704704
// http get the object

client/contivModelClient.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def listBgp(self):
153153

154154
# Inspect endpoint
155155
def createEndpoint(self, obj):
156-
postUrl = self.baseUrl + '/api/v1/inspect/endpoint/' + obj.name + '/'
156+
postUrl = self.baseUrl + '/api/v1/inspect/endpoint/' + obj.endpointID + '/'
157157

158158
retDate = urllib2.urlopen(postUrl)
159159
if retData == "Error":

contivModel.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ type EndpointOper struct {
6262
// oper object key (present for oper only objects)
6363
Key string `json:"key,omitempty"`
6464

65-
AttachUUID string `json:"attachUUID,omitempty"` //
6665
ContainerID string `json:"containerID,omitempty"` //
66+
ContainerName string `json:"containerName,omitempty"` //
6767
EndpointGroupID int `json:"endpointGroupId,omitempty"` //
6868
EndpointGroupKey string `json:"endpointGroupKey,omitempty"` //
69+
EndpointID string `json:"endpointID,omitempty"` //
6970
HomingHost string `json:"homingHost,omitempty"` //
7071
IntfName string `json:"intfName,omitempty"` //
7172
IpAddress []string `json:"ipAddress,omitempty"`
7273
Labels string `json:"labels,omitempty"` //
7374
MacAddress string `json:"macAddress,omitempty"` //
74-
Name string `json:"name,omitempty"` //
7575
Network string `json:"network,omitempty"` //
7676
ServiceName string `json:"serviceName,omitempty"` //
7777
VtepIP string `json:"vtepIP,omitempty"` //

endpoint.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"name": "endpoint",
66
"version": "v1",
77
"type": "object",
8-
"key": [ "name" ],
8+
"key": [ "endpointID" ],
99
"operProperties": {
1010
"network": {
1111
"type": "string"
1212
},
13-
"name": {
13+
"endpointID": {
1414
"type": "string"
1515
},
1616
"serviceName": {
@@ -25,9 +25,6 @@
2525
"endpointGroupKey": {
2626
"type": "string"
2727
},
28-
"attachUUID": {
29-
"type": "string"
30-
},
3128
"ipAddress": {
3229
"type": "array",
3330
"items": "string"
@@ -49,6 +46,9 @@
4946
},
5047
"containerID": {
5148
"type": "string"
49+
},
50+
"containerName": {
51+
"type": "string"
5252
}
5353
}
5454
}

0 commit comments

Comments
 (0)