(cmd *cobra.Command, input any, results []jsonOperationResult, warnings []jsonWarning)
| 90 | } |
| 91 | |
| 92 | func renderJSONOperationOutputWithWarnings(cmd *cobra.Command, input any, results []jsonOperationResult, warnings []jsonWarning) error { |
| 93 | return commandOutput(cmd).Render(nil, newJSONCommandOperationOutput(cmd, input, results, warnings)) |
| 94 | } |
| 95 | |
| 96 | func newJSONOperationResult(status, kind string, input any, result any) jsonOperationResult { |
| 97 | return normalizeJSONOperationResult(jsonOperationResult{ |
no test coverage detected