Class V1ReplicationControllerSpec
ReplicationControllerSpec is the specification of a replication controller.
Inheritance
V1ReplicationControllerSpec
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicationControllerSpec : IEquatable<V1ReplicationControllerSpec>
Constructors
V1ReplicationControllerSpec()
Declaration
public V1ReplicationControllerSpec()
V1ReplicationControllerSpec(V1ReplicationControllerSpec)
Declaration
protected V1ReplicationControllerSpec(V1ReplicationControllerSpec original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
MinReadySeconds
Minimum number of seconds for which a newly created pod should be ready without
any of its container crashing, for it to be considered available. Defaults to 0
(pod will be considered available as soon as it is ready)
Declaration
[JsonPropertyName("minReadySeconds")]
public int? MinReadySeconds { get; set; }
Property Value
Replicas
Declaration
[JsonPropertyName("replicas")]
public int? Replicas { get; set; }
Property Value
Selector
Declaration
[JsonPropertyName("selector")]
public IDictionary<string, string> Selector { get; set; }
Property Value
Template
Declaration
[JsonPropertyName("template")]
public V1PodTemplateSpec Template { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1ReplicationControllerSpec?)
Declaration
public virtual bool Equals(V1ReplicationControllerSpec? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1ReplicationControllerSpec?, V1ReplicationControllerSpec?)
Declaration
public static bool operator ==(V1ReplicationControllerSpec? left, V1ReplicationControllerSpec? right)
Parameters
Returns
operator !=(V1ReplicationControllerSpec?, V1ReplicationControllerSpec?)
Declaration
public static bool operator !=(V1ReplicationControllerSpec? left, V1ReplicationControllerSpec? right)
Parameters
Returns
Implements