V14: Add missing action parameters mapping (#16557)

* Add missing mapping for ActionParameters

* Remove -ActionParameters as that is now mapped

* Update OpenApi.json

---------

Co-authored-by: Elitsa <elm@umbraco.dk>
This commit is contained in:
Nikolaj Geisle
2024-06-07 10:22:13 +02:00
committed by GitHub
parent 42ce64c357
commit b04e4d7586
3 changed files with 17 additions and 1 deletions

View File

@@ -47,4 +47,9 @@ public class HealthCheckActionRequestModel
/// Gets or sets the regex to use when validating the provided value (if the value can be validated by a regex).
/// </summary>
public string? ProvidedValueValidationRegex { get; set; }
/// <summary>
/// Gets or sets the action parameters.
/// </summary>
public Dictionary<string, object>? ActionParameters { get; set; }
}