Show / Hide Table of Contents

Class V1VolumeMountStatus

VolumeMountStatus shows status of volume mounts.

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

Constructors

View Source

V1VolumeMountStatus()

Declaration
public V1VolumeMountStatus()
View Source

V1VolumeMountStatus(V1VolumeMountStatus)

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

Properties

View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
View Source

MountPath

MountPath corresponds to the original VolumeMount.

Declaration
[JsonPropertyName("mountPath")]
public string MountPath { get; set; }
Property Value
Type Description
string
View Source

Name

Name corresponds to the name of the original VolumeMount.

Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type Description
string
View Source

ReadOnlyProperty

ReadOnly corresponds to the original VolumeMount.

Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
Type Description
bool?
View Source

RecursiveReadOnly

RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.

Declaration
[JsonPropertyName("recursiveReadOnly")]
public string RecursiveReadOnly { 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(V1VolumeMountStatus?)

Declaration
public virtual bool Equals(V1VolumeMountStatus? other)
Parameters
Type Name Description
V1VolumeMountStatus 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 ==(V1VolumeMountStatus?, V1VolumeMountStatus?)

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

operator !=(V1VolumeMountStatus?, V1VolumeMountStatus?)

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

Implements

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