Skip to content

Commit f8df45e

Browse files
author
Joji Mekkatt
committed
Add clustermode to GlobalOper
1 parent aa838be commit f8df45e

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

client/contivModelClient.go

+1
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ type Global struct {
320320
}
321321

322322
type GlobalOper struct {
323+
ClusterMode string `json:"clusterMode,omitempty"` //
323324
DefaultNetwork string `json:"defaultNetwork,omitempty"` //
324325
FreeVXLANsStart int `json:"freeVXLANsStart,omitempty"` //
325326
NumNetworks int `json:"numNetworks,omitempty"` //

contivModel.go

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ type Global struct {
201201
}
202202

203203
type GlobalOper struct {
204+
ClusterMode string `json:"clusterMode,omitempty"` //
204205
DefaultNetwork string `json:"defaultNetwork,omitempty"` //
205206
FreeVXLANsStart int `json:"freeVXLANsStart,omitempty"` //
206207
NumNetworks int `json:"numNetworks,omitempty"` //

global.json

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@
6161
},
6262
"freeVXLANsStart": {
6363
"type": "int"
64+
},
65+
"clusterMode": {
66+
"type": "string"
6467
}
6568
}
6669
}

0 commit comments

Comments
 (0)