Class V1beta1Mutation
Mutation specifies the CEL expression which is used to apply the Mutation.
Inheritance
V1beta1Mutation
Assembly: KubernetesClient.dll
Syntax
public record V1beta1Mutation : IEquatable<V1beta1Mutation>
Constructors
View Source
V1beta1Mutation()
Declaration
View Source
V1beta1Mutation(V1beta1Mutation)
Declaration
protected V1beta1Mutation(V1beta1Mutation original)
Parameters
Properties
View Source
ApplyConfiguration
applyConfiguration defines the desired configuration values of an object. The
configuration is applied to the admission object using structured merge
diff. A CEL
expression is used to create apply configuration.
Declaration
[JsonPropertyName("applyConfiguration")]
public V1beta1ApplyConfiguration ApplyConfiguration { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
JsonPatch
jsonPatch defines a JSON patch operation to perform a
mutation to the object. A CEL expression is used to create the JSON patch.
Declaration
[JsonPropertyName("jsonPatch")]
public V1beta1JSONPatch JsonPatch { get; set; }
Property Value
View Source
PatchType
patchType indicates the patch strategy used. Allowed values are
"ApplyConfiguration" and "JSONPatch". Required.
Declaration
[JsonPropertyName("patchType")]
public string PatchType { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1beta1Mutation?)
Declaration
public virtual bool Equals(V1beta1Mutation? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1beta1Mutation?, V1beta1Mutation?)
Declaration
public static bool operator ==(V1beta1Mutation? left, V1beta1Mutation? right)
Parameters
Returns
View Source
operator !=(V1beta1Mutation?, V1beta1Mutation?)
Declaration
public static bool operator !=(V1beta1Mutation? left, V1beta1Mutation? right)
Parameters
Returns
Implements