Show / Hide Table of Contents

Class V1VolumeAttachmentStatus

VolumeAttachmentStatus is the status of a VolumeAttachment request.

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

Constructors

V1VolumeAttachmentStatus()

Declaration
public V1VolumeAttachmentStatus()

V1VolumeAttachmentStatus(V1VolumeAttachmentStatus)

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

Properties

AttachError

attachError represents the last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Declaration
[JsonPropertyName("attachError")]
public V1VolumeError AttachError { get; set; }
Property Value
Type Description
V1VolumeError

Attached

attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Declaration
[JsonPropertyName("attached")]
public bool Attached { get; set; }
Property Value
Type Description
bool

AttachmentMetadata

attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Declaration
[JsonPropertyName("attachmentMetadata")]
public IDictionary<string, string> AttachmentMetadata { get; set; }
Property Value
Type Description
IDictionary<string, string>

DetachError

detachError represents the last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.

Declaration
[JsonPropertyName("detachError")]
public V1VolumeError DetachError { get; set; }
Property Value
Type Description
V1VolumeError

EqualityContract

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

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(V1VolumeAttachmentStatus?)

Declaration
public virtual bool Equals(V1VolumeAttachmentStatus? other)
Parameters
Type Name Description
V1VolumeAttachmentStatus other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(V1VolumeAttachmentStatus?, V1VolumeAttachmentStatus?)

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

operator !=(V1VolumeAttachmentStatus?, V1VolumeAttachmentStatus?)

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

Implements

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