PruneObject is an apiserver object that should be deleted as part of prune.
| 45 | |
| 46 | // PruneObject is an apiserver object that should be deleted as part of prune. |
| 47 | type PruneObject struct { |
| 48 | Name string |
| 49 | Namespace string |
| 50 | Mapping *meta.RESTMapping |
| 51 | Object runtime.Object |
| 52 | } |
| 53 | |
| 54 | // String returns a human-readable name of the object, for use in debug messages. |
| 55 | func (p *PruneObject) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected