Style fix final (#523)
* all net5 * var * SA1310 * SA1310 * allow 1031 * SA1805 * fix SA1642 * remove unused code * allow sa1405 * isempty * fix CA1714 * fix CA1806 * remove always false if * fix format * fix CA1062 * allow SA0001 * fix CA1062 * allow ca1034 and temp allow ca1835 * fix 16XX doc related warnings * elm SA16XX * elm SA16XX * fix CA2213 * revert to pass all test * move unclear rule to ruleset * follow up of moving ruleset * remove this * fix test flaky
This commit is contained in:
@@ -8,9 +8,24 @@ namespace k8s.Models
|
||||
{
|
||||
public enum PatchType
|
||||
{
|
||||
/// <summary>
|
||||
/// not set, this is not allowed
|
||||
/// </summary>
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// content type application/json-patch+json
|
||||
/// </summary>
|
||||
JsonPatch,
|
||||
|
||||
/// <summary>
|
||||
/// content type application/merge-patch+json
|
||||
/// </summary>
|
||||
MergePatch,
|
||||
|
||||
/// <summary>
|
||||
/// content type application/strategic-merge-patch+json
|
||||
/// </summary>
|
||||
StrategicMergePatch,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user