Class V1ContainerImage
Describe a container image
Inheritance
V1ContainerImage
Assembly: KubernetesClient.dll
Syntax
public record V1ContainerImage : IEquatable<V1ContainerImage>
Constructors
View Source
V1ContainerImage()
Declaration
public V1ContainerImage()
View Source
V1ContainerImage(V1ContainerImage)
Declaration
protected V1ContainerImage(V1ContainerImage original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Names
Names by which this image is known. e.g. ["kubernetes.example/hyperkube:v1.0.7",
"cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7"]
Declaration
[JsonPropertyName("names")]
public IList<string> Names { get; set; }
Property Value
View Source
SizeBytes
The size of the image in bytes.
Declaration
[JsonPropertyName("sizeBytes")]
public long? SizeBytes { 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(V1ContainerImage?)
Declaration
public virtual bool Equals(V1ContainerImage? 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 ==(V1ContainerImage?, V1ContainerImage?)
Declaration
public static bool operator ==(V1ContainerImage? left, V1ContainerImage? right)
Parameters
Returns
View Source
operator !=(V1ContainerImage?, V1ContainerImage?)
Declaration
public static bool operator !=(V1ContainerImage? left, V1ContainerImage? right)
Parameters
Returns
Implements