Getter is an interface that allows getting conditions from a (sub)resource.
| 8 | |
| 9 | // Getter is an interface that allows getting conditions from a (sub)resource. |
| 10 | type Getter interface { |
| 11 | // GetConditions returns the conditions on the resource. |
| 12 | GetConditions() []metav1.Condition |
| 13 | } |
| 14 | |
| 15 | // Setter is an interface that allows setting conditions on a (sub)resource. |
| 16 | type Setter interface { |
no outgoing calls
no test coverage detected