Show / Hide Table of Contents

Class V1beta1Mutation

Mutation specifies the CEL expression which is used to apply the Mutation.

Inheritance
object
V1beta1Mutation
Implements
IEquatable<V1beta1Mutation>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1beta1Mutation : IEquatable<V1beta1Mutation>

Constructors

View Source

V1beta1Mutation()

Declaration
public V1beta1Mutation()
View Source

V1beta1Mutation(V1beta1Mutation)

Declaration
protected V1beta1Mutation(V1beta1Mutation original)
Parameters
Type Name Description
V1beta1Mutation original

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
Type Description
V1beta1ApplyConfiguration
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
Type Description
V1beta1JSONPatch
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
Type Description
string

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1beta1Mutation?)

Declaration
public virtual bool Equals(V1beta1Mutation? other)
Parameters
Type Name Description
V1beta1Mutation other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1beta1Mutation?, V1beta1Mutation?)

Declaration
public static bool operator ==(V1beta1Mutation? left, V1beta1Mutation? right)
Parameters
Type Name Description
V1beta1Mutation left
V1beta1Mutation right
Returns
Type Description
bool
View Source

operator !=(V1beta1Mutation?, V1beta1Mutation?)

Declaration
public static bool operator !=(V1beta1Mutation? left, V1beta1Mutation? right)
Parameters
Type Name Description
V1beta1Mutation left
V1beta1Mutation right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX