@@ -122,8 +122,8 @@ type App struct {
122
122
// every object has a key
123
123
Key string `json:"key,omitempty"`
124
124
125
- AppName string `json:"appName,omitempty"` // Application Name
126
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
125
+ AppName string `json:"appName,omitempty"` //
126
+ TenantName string `json:"tenantName,omitempty"` //
127
127
128
128
// add link-sets and links
129
129
LinkSets AppLinkSets `json:"link-sets,omitempty"`
@@ -142,11 +142,11 @@ type EndpointGroup struct {
142
142
// every object has a key
143
143
Key string `json:"key,omitempty"`
144
144
145
- EndpointGroupID int `json:"endpointGroupId,omitempty"` //
146
- GroupName string `json:"groupName,omitempty"` // Endpoint group Name
147
- NetworkName string `json:"networkName,omitempty"` //
145
+ EndpointGroupID int `json:"endpointGroupId,omitempty"` // Group Identifier
146
+ GroupName string `json:"groupName,omitempty"` // Group name
147
+ NetworkName string `json:"networkName,omitempty"` // Network
148
148
Policies []string `json:"policies,omitempty"`
149
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
149
+ TenantName string `json:"tenantName,omitempty"` // Tenant
150
150
151
151
// add link-sets and links
152
152
LinkSets EndpointGroupLinkSets `json:"link-sets,omitempty"`
@@ -167,23 +167,23 @@ type Global struct {
167
167
// every object has a key
168
168
Key string `json:"key,omitempty"`
169
169
170
- Name string `json:"name,omitempty"` //
171
- NetworkInfraType string `json:"network-infra-type,omitempty"` //
170
+ Name string `json:"name,omitempty"` // name of this block
171
+ NetworkInfraType string `json:"network-infra-type,omitempty"` // Network infrastructure type
172
+ Vlans string `json:"vlans,omitempty"` // Allowed vlan range
173
+ Vxlans string `json:"vxlans,omitempty"` // Allwed vxlan range
172
174
173
175
}
174
176
175
177
type Network struct {
176
178
// every object has a key
177
179
Key string `json:"key,omitempty"`
178
180
179
- Encap string `json:"encap,omitempty"` //
180
- Gateway string `json:"gateway,omitempty"` //
181
- IsPrivate bool `json:"isPrivate,omitempty"` //
182
- IsPublic bool `json:"isPublic,omitempty"` //
183
- NetworkName string `json:"networkName,omitempty"` //
184
- PktTag int `json:"pktTag,omitempty"` //
185
- Subnet string `json:"subnet,omitempty"` //
186
- TenantName string `json:"tenantName,omitempty"` //
181
+ Encap string `json:"encap,omitempty"` // Encapsulation
182
+ Gateway string `json:"gateway,omitempty"` // Gateway
183
+ NetworkName string `json:"networkName,omitempty"` // Network name
184
+ PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
185
+ Subnet string `json:"subnet,omitempty"` // Subnet
186
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
187
187
188
188
// add link-sets and links
189
189
LinkSets NetworkLinkSets `json:"link-sets,omitempty"`
@@ -224,17 +224,17 @@ type Rule struct {
224
224
// every object has a key
225
225
Key string `json:"key,omitempty"`
226
226
227
- Action string `json:"action,omitempty"` //
228
- Direction string `json:"direction,omitempty"` //
229
- EndpointGroup string `json:"endpointGroup,omitempty"` //
230
- IpAddress string `json:"ipAddress,omitempty"` //
231
- Network string `json:"network,omitempty"` //
232
- PolicyName string `json:"policyName,omitempty"` //
233
- Port int `json:"port,omitempty"` //
234
- Priority int `json:"priority,omitempty"` //
235
- Protocol string `json:"protocol,omitempty"` //
236
- RuleID string `json:"ruleId,omitempty"` //
237
- TenantName string `json:"tenantName,omitempty"` //
227
+ Action string `json:"action,omitempty"` // Action
228
+ Direction string `json:"direction,omitempty"` // Direction
229
+ EndpointGroup string `json:"endpointGroup,omitempty"` // Group
230
+ IpAddress string `json:"ipAddress,omitempty"` // IP Address
231
+ Network string `json:"network,omitempty"` // Network Name
232
+ PolicyName string `json:"policyName,omitempty"` // Policy Name
233
+ Port int `json:"port,omitempty"` // Port No
234
+ Priority int `json:"priority,omitempty"` // Priority
235
+ Protocol string `json:"protocol,omitempty"` // Protocol
236
+ RuleID string `json:"ruleId,omitempty"` // Rule Id
237
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
238
238
239
239
// add link-sets and links
240
240
LinkSets RuleLinkSets `json:"link-sets,omitempty"`
@@ -248,7 +248,7 @@ type Service struct {
248
248
// every object has a key
249
249
Key string `json:"key,omitempty"`
250
250
251
- AppName string `json:"appName,omitempty"` // Application Name
251
+ AppName string `json:"appName,omitempty"` //
252
252
Command string `json:"command,omitempty"` //
253
253
Cpu string `json:"cpu,omitempty"` //
254
254
EndpointGroups []string `json:"endpointGroups,omitempty"`
@@ -257,8 +257,8 @@ type Service struct {
257
257
Memory string `json:"memory,omitempty"` //
258
258
Networks []string `json:"networks,omitempty"`
259
259
Scale int `json:"scale,omitempty"` //
260
- ServiceName string `json:"serviceName,omitempty"` // Service Name
261
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
260
+ ServiceName string `json:"serviceName,omitempty"` //
261
+ TenantName string `json:"tenantName,omitempty"` //
262
262
VolumeProfile string `json:"volumeProfile,omitempty"` //
263
263
264
264
// add link-sets and links
@@ -282,9 +282,9 @@ type ServiceInstance struct {
282
282
Key string `json:"key,omitempty"`
283
283
284
284
AppName string `json:"appName,omitempty"` //
285
- InstanceID string `json:"instanceId,omitempty"` // Service instance id
285
+ InstanceID string `json:"instanceId,omitempty"` //
286
286
ServiceName string `json:"serviceName,omitempty"` //
287
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
287
+ TenantName string `json:"tenantName,omitempty"` //
288
288
Volumes []string `json:"volumes,omitempty"`
289
289
290
290
// add link-sets and links
@@ -304,12 +304,8 @@ type Tenant struct {
304
304
// every object has a key
305
305
Key string `json:"key,omitempty"`
306
306
307
- DefaultNetwork string `json:"defaultNetwork,omitempty"` //
308
- SubnetLen int `json:"subnetLen,omitempty"` //
309
- SubnetPool string `json:"subnetPool,omitempty"` //
310
- TenantName string `json:"tenantName,omitempty"` //
311
- Vlans string `json:"vlans,omitempty"` //
312
- Vxlans string `json:"vxlans,omitempty"` //
307
+ DefaultNetwork string `json:"defaultNetwork,omitempty"` // Network name
308
+ TenantName string `json:"tenantName,omitempty"` // Tenant Name
313
309
314
310
// add link-sets and links
315
311
LinkSets TenantLinkSets `json:"link-sets,omitempty"`
@@ -332,8 +328,8 @@ type Volume struct {
332
328
MountPoint string `json:"mountPoint,omitempty"` //
333
329
PoolName string `json:"poolName,omitempty"` //
334
330
Size string `json:"size,omitempty"` //
335
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
336
- VolumeName string `json:"volumeName,omitempty"` // Volume Name
331
+ TenantName string `json:"tenantName,omitempty"` //
332
+ VolumeName string `json:"volumeName,omitempty"` //
337
333
338
334
// add link-sets and links
339
335
LinkSets VolumeLinkSets `json:"link-sets,omitempty"`
@@ -356,8 +352,8 @@ type VolumeProfile struct {
356
352
MountPoint string `json:"mountPoint,omitempty"` //
357
353
PoolName string `json:"poolName,omitempty"` //
358
354
Size string `json:"size,omitempty"` //
359
- TenantName string `json:"tenantName,omitempty"` // Tenant Name
360
- VolumeProfileName string `json:"volumeProfileName,omitempty"` // Volume profile Name
355
+ TenantName string `json:"tenantName,omitempty"` //
356
+ VolumeProfileName string `json:"volumeProfileName,omitempty"` //
361
357
362
358
// add link-sets and links
363
359
LinkSets VolumeProfileLinkSets `json:"link-sets,omitempty"`
0 commit comments