File tree 4 files changed +21
-1
lines changed
4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ type EndpointGroup struct {
235
235
236
236
type EndpointGroupLinkSets struct {
237
237
ExtContractsGrps map [string ]Link `json:"ExtContractsGrps,omitempty"`
238
+ MatchRules map [string ]Link `json:"MatchRules,omitempty"`
238
239
Policies map [string ]Link `json:"Policies,omitempty"`
239
240
Services map [string ]Link `json:"Services,omitempty"`
240
241
}
@@ -428,12 +429,17 @@ type Rule struct {
428
429
429
430
// add link-sets and links
430
431
LinkSets RuleLinkSets `json:"link-sets,omitempty"`
432
+ Links RuleLinks `json:"links,omitempty"`
431
433
}
432
434
433
435
type RuleLinkSets struct {
434
436
Policies map [string ]Link `json:"Policies,omitempty"`
435
437
}
436
438
439
+ type RuleLinks struct {
440
+ MatchEndpointGroup Link `json:"MatchEndpointGroup,omitempty"`
441
+ }
442
+
437
443
type RuleInspect struct {
438
444
Config Rule
439
445
}
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ type EndpointGroup struct {
109
109
110
110
type EndpointGroupLinkSets struct {
111
111
ExtContractsGrps map [string ]modeldb.Link `json:"ExtContractsGrps,omitempty"`
112
+ MatchRules map [string ]modeldb.Link `json:"MatchRules,omitempty"`
112
113
Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
113
114
Services map [string ]modeldb.Link `json:"Services,omitempty"`
114
115
}
@@ -302,12 +303,17 @@ type Rule struct {
302
303
303
304
// add link-sets and links
304
305
LinkSets RuleLinkSets `json:"link-sets,omitempty"`
306
+ Links RuleLinks `json:"links,omitempty"`
305
307
}
306
308
307
309
type RuleLinkSets struct {
308
310
Policies map [string ]modeldb.Link `json:"Policies,omitempty"`
309
311
}
310
312
313
+ type RuleLinks struct {
314
+ MatchEndpointGroup modeldb.Link `json:"MatchEndpointGroup,omitempty"`
315
+ }
316
+
311
317
type RuleInspect struct {
312
318
Config Rule
313
319
}
Original file line number Diff line number Diff line change 75
75
"policies" : {
76
76
"ref" : " policy"
77
77
},
78
+ "matchRules" : {
79
+ "ref" : " rule"
80
+ },
78
81
"extContractsGrps" : {
79
82
"ref" : " extContractsGrp"
80
83
}
Original file line number Diff line number Diff line change 114
114
"policies" : {
115
115
"ref" : " policy"
116
116
}
117
- }
117
+ },
118
+ "links" : {
119
+ "matchEndpointGroup" : {
120
+ "ref" : " endpointGroup"
121
+ }
122
+ }
118
123
}
119
124
]
120
125
}
You can’t perform that action at this time.
0 commit comments