WriteAPI exposes a generic API for a client go type for status operations. Not all types have status, so they need to be split out
| 166 | // WriteAPI exposes a generic API for a client go type for status operations. |
| 167 | // Not all types have status, so they need to be split out |
| 168 | type WriteStatusAPI[T runtime.Object] interface { |
| 169 | UpdateStatus(ctx context.Context, object T, opts metav1.UpdateOptions) (T, error) |
| 170 | } |
| 171 | |
| 172 | // ReadAPI exposes a generic API for a client go type for read operations. |
| 173 | type ReadAPI[T runtime.Object, TL runtime.Object] interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…