(jsonpatch any, apiVersion string, kind string, namespace string, name string, opts ...sdkpkg.PatchCollectorOption)
| 306 | } |
| 307 | |
| 308 | func NewJSONPatchOperation(jsonpatch any, apiVersion string, kind string, namespace string, name string, opts ...sdkpkg.PatchCollectorOption) sdkpkg.PatchCollectorOperation { |
| 309 | return newPatchOperation(types.JSONPatchType, jsonpatch, apiVersion, kind, namespace, name, opts...) |
| 310 | } |
| 311 | |
| 312 | func newPatchOperation(patchType types.PatchType, patch any, apiVersion, kind, namespace, name string, opts ...sdkpkg.PatchCollectorOption) sdkpkg.PatchCollectorOperation { |
| 313 | op := &patchOperation{ |