Class V1DaemonSetUpdateStrategy
DaemonSetUpdateStrategy is a struct used to control the update strategy for a
DaemonSet.
Inheritance
V1DaemonSetUpdateStrategy
Assembly: KubernetesClient.dll
Syntax
public record V1DaemonSetUpdateStrategy : IEquatable<V1DaemonSetUpdateStrategy>
Constructors
View Source
V1DaemonSetUpdateStrategy()
Declaration
public V1DaemonSetUpdateStrategy()
View Source
V1DaemonSetUpdateStrategy(V1DaemonSetUpdateStrategy)
Declaration
protected V1DaemonSetUpdateStrategy(V1DaemonSetUpdateStrategy original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
RollingUpdate
Rolling update config params. Present only if type = "RollingUpdate".
Declaration
[JsonPropertyName("rollingUpdate")]
public V1RollingUpdateDaemonSet RollingUpdate { get; set; }
Property Value
View Source
Type
Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is
RollingUpdate.
Declaration
[JsonPropertyName("type")]
public string Type { 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(V1DaemonSetUpdateStrategy?)
Declaration
public virtual bool Equals(V1DaemonSetUpdateStrategy? 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 ==(V1DaemonSetUpdateStrategy?, V1DaemonSetUpdateStrategy?)
Declaration
public static bool operator ==(V1DaemonSetUpdateStrategy? left, V1DaemonSetUpdateStrategy? right)
Parameters
Returns
View Source
operator !=(V1DaemonSetUpdateStrategy?, V1DaemonSetUpdateStrategy?)
Declaration
public static bool operator !=(V1DaemonSetUpdateStrategy? left, V1DaemonSetUpdateStrategy? right)
Parameters
Returns
Implements