Class V1ReplicationControllerSpec
ReplicationControllerSpec is the specification of a replication controller.
Inheritance
V1ReplicationControllerSpec
Assembly: KubernetesClient.dll
Syntax
public record V1ReplicationControllerSpec : IEquatable<V1ReplicationControllerSpec>
Constructors
View Source
V1ReplicationControllerSpec()
Declaration
public V1ReplicationControllerSpec()
View Source
V1ReplicationControllerSpec(V1ReplicationControllerSpec)
Declaration
protected V1ReplicationControllerSpec(V1ReplicationControllerSpec original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
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
View Source
Replicas
Declaration
[JsonPropertyName("replicas")]
public int? Replicas { get; set; }
Property Value
View Source
Selector
Declaration
[JsonPropertyName("selector")]
public IDictionary<string, string> Selector { get; set; }
Property Value
View Source
Template
Declaration
[JsonPropertyName("template")]
public V1PodTemplateSpec Template { 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(V1ReplicationControllerSpec?)
Declaration
public virtual bool Equals(V1ReplicationControllerSpec? 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 ==(V1ReplicationControllerSpec?, V1ReplicationControllerSpec?)
Declaration
public static bool operator ==(V1ReplicationControllerSpec? left, V1ReplicationControllerSpec? right)
Parameters
Returns
View Source
operator !=(V1ReplicationControllerSpec?, V1ReplicationControllerSpec?)
Declaration
public static bool operator !=(V1ReplicationControllerSpec? left, V1ReplicationControllerSpec? right)
Parameters
Returns
Implements