@@ -23,6 +23,17 @@ type AppProfile struct {
23
23
EndpointGroups []string `json:"endpointGroups,omitempty"`
24
24
TenantName string `json:"tenantName,omitempty"` // Tenant Name
25
25
26
+ // add link-sets and links
27
+ LinkSets AppProfileLinkSets `json:"link-sets,omitempty"`
28
+ Links AppProfileLinks `json:"links,omitempty"`
29
+ }
30
+
31
+ type AppProfileLinkSets struct {
32
+ EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
33
+ }
34
+
35
+ type AppProfileLinks struct {
36
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
26
37
}
27
38
28
39
type AppProfileInspect struct {
@@ -53,6 +64,20 @@ type EndpointGroup struct {
53
64
Policies []string `json:"policies,omitempty"`
54
65
TenantName string `json:"tenantName,omitempty"` // Tenant
55
66
67
+ // add link-sets and links
68
+ LinkSets EndpointGroupLinkSets `json:"link-sets,omitempty"`
69
+ Links EndpointGroupLinks `json:"links,omitempty"`
70
+ }
71
+
72
+ type EndpointGroupLinkSets struct {
73
+ Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
74
+ Services map [string ]modeldb.Link `json:"Services,omitempty"`
75
+ }
76
+
77
+ type EndpointGroupLinks struct {
78
+ AppProfile modeldb.Link `json:"AppProfile,omitempty"`
79
+ Network modeldb.Link `json:"Network,omitempty"`
80
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
56
81
}
57
82
58
83
type EndpointGroupLinkSets struct {
@@ -116,6 +141,19 @@ type Network struct {
116
141
Subnet string `json:"subnet,omitempty"` // Subnet
117
142
TenantName string `json:"tenantName,omitempty"` // Tenant Name
118
143
144
+ // add link-sets and links
145
+ LinkSets NetworkLinkSets `json:"link-sets,omitempty"`
146
+ Links NetworkLinks `json:"links,omitempty"`
147
+ }
148
+
149
+ type NetworkLinkSets struct {
150
+ EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
151
+ Servicelbs map [string ]modeldb.Link `json:"Servicelbs,omitempty"`
152
+ Services map [string ]modeldb.Link `json:"Services,omitempty"`
153
+ }
154
+
155
+ type NetworkLinks struct {
156
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
119
157
}
120
158
121
159
type NetworkInspect struct {
@@ -128,6 +166,18 @@ type Policy struct {
128
166
PolicyName string `json:"policyName,omitempty"` // Policy Name
129
167
TenantName string `json:"tenantName,omitempty"` // Tenant Name
130
168
169
+ // add link-sets and links
170
+ LinkSets PolicyLinkSets `json:"link-sets,omitempty"`
171
+ Links PolicyLinks `json:"links,omitempty"`
172
+ }
173
+
174
+ type PolicyLinkSets struct {
175
+ EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
176
+ Rules map [string ]modeldb.Link `json:"Rules,omitempty"`
177
+ }
178
+
179
+ type PolicyLinks struct {
180
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
131
181
}
132
182
133
183
type PolicyInspect struct {
@@ -152,6 +202,12 @@ type Rule struct {
152
202
ToIpAddress string `json:"toIpAddress,omitempty"` // IP Address
153
203
ToNetwork string `json:"toNetwork,omitempty"` // To Network
154
204
205
+ // add link-sets and links
206
+ LinkSets RuleLinkSets `json:"link-sets,omitempty"`
207
+ }
208
+
209
+ type RuleLinkSets struct {
210
+ Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
155
211
}
156
212
157
213
type RuleInspect struct {
@@ -168,6 +224,12 @@ type ServiceLB struct {
168
224
ServiceName string `json:"serviceName,omitempty"` // service name
169
225
TenantName string `json:"tenantName,omitempty"` // Tenant Name
170
226
227
+ Links ServiceLBLinks `json:"links,omitempty"`
228
+ }
229
+
230
+ type ServiceLBLinks struct {
231
+ Network modeldb.Link `json:"Network,omitempty"`
232
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
171
233
}
172
234
173
235
type ServiceLBInspect struct {
@@ -180,6 +242,18 @@ type Tenant struct {
180
242
DefaultNetwork string `json:"defaultNetwork,omitempty"` // Network name
181
243
TenantName string `json:"tenantName,omitempty"` // Tenant Name
182
244
245
+ // add link-sets and links
246
+ LinkSets TenantLinkSets `json:"link-sets,omitempty"`
247
+ }
248
+
249
+ type TenantLinkSets struct {
250
+ AppProfiles map [string ]modeldb.Link `json:"AppProfiles,omitempty"`
251
+ EndpointGroups map [string ]modeldb.Link `json:"EndpointGroups,omitempty"`
252
+ Networks map [string ]modeldb.Link `json:"Networks,omitempty"`
253
+ Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
254
+ Servicelbs map [string ]modeldb.Link `json:"Servicelbs,omitempty"`
255
+ VolumeProfiles map [string ]modeldb.Link `json:"VolumeProfiles,omitempty"`
256
+ Volumes map [string ]modeldb.Link `json:"Volumes,omitempty"`
183
257
}
184
258
185
259
type TenantInspect struct {
@@ -196,6 +270,17 @@ type Volume struct {
196
270
TenantName string `json:"tenantName,omitempty"` // Tenant Name
197
271
VolumeName string `json:"volumeName,omitempty"` // Volume Name
198
272
273
+ // add link-sets and links
274
+ LinkSets VolumeLinkSets `json:"link-sets,omitempty"`
275
+ Links VolumeLinks `json:"links,omitempty"`
276
+ }
277
+
278
+ type VolumeLinkSets struct {
279
+ ServiceInstances map [string ]modeldb.Link `json:"ServiceInstances,omitempty"`
280
+ }
281
+
282
+ type VolumeLinks struct {
283
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
199
284
}
200
285
201
286
type VolumeInspect struct {
@@ -212,6 +297,17 @@ type VolumeProfile struct {
212
297
TenantName string `json:"tenantName,omitempty"` // Tenant Name
213
298
VolumeProfileName string `json:"volumeProfileName,omitempty"` // Volume profile Name
214
299
300
+ // add link-sets and links
301
+ LinkSets VolumeProfileLinkSets `json:"link-sets,omitempty"`
302
+ Links VolumeProfileLinks `json:"links,omitempty"`
303
+ }
304
+
305
+ type VolumeProfileLinkSets struct {
306
+ Services map [string ]modeldb.Link `json:"Services,omitempty"`
307
+ }
308
+
309
+ type VolumeProfileLinks struct {
310
+ Tenant modeldb.Link `json:"Tenant,omitempty"`
215
311
}
216
312
217
313
type VolumeProfileInspect struct {
0 commit comments