mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
8 lines
210 B
Go
8 lines
210 B
Go
|
package values
|
||
|
|
||
|
type Rule struct {
|
||
|
Name string `json:"name"`
|
||
|
Values map[string]interface{} `json:"values"`
|
||
|
ForeachValues map[string][]interface{} `json:"foreachValues"`
|
||
|
}
|