We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93031b2 commit a7bc869Copy full SHA for a7bc869
src/KubeOps.Operator.Web/Webhooks/Mutation/MutationResult.cs
@@ -1,5 +1,3 @@
1
-using System.Text.Json.JsonDiffPatch;
2
-using System.Text.Json.JsonDiffPatch.Diffs.Formatters;
3
using System.Text.Json.Nodes;
4
5
using k8s;
@@ -13,6 +11,8 @@ namespace KubeOps.Operator.Web.Webhooks.Mutation;
13
11
/// <summary>
14
12
/// The mutation result for the mutation (admission) request to a webhook.
15
/// </summary>
+/// <param name="ModifiedObject">The modified entity if any changes are requested.</param>
+/// <typeparam name="TEntity">The type of the entity.</typeparam>
16
public record MutationResult<TEntity>(TEntity? ModifiedObject = default) : IActionResult
17
where TEntity : IKubernetesObject<V1ObjectMeta>
18
{
0 commit comments