Class V1VolumeDevice
volumeDevice describes a mapping of a raw block device within a container.
Inheritance
V1VolumeDevice
Assembly: KubernetesClient.dll
Syntax
public record V1VolumeDevice : IEquatable<V1VolumeDevice>
Constructors
V1VolumeDevice()
Declaration
V1VolumeDevice(V1VolumeDevice)
Declaration
protected V1VolumeDevice(V1VolumeDevice original)
Parameters
Properties
DevicePath
devicePath is the path inside of the container that the device will be mapped
to.
Declaration
[JsonPropertyName("devicePath")]
public string DevicePath { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Name
name must match the name of a persistentVolumeClaim in the pod
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1VolumeDevice?)
Declaration
public virtual bool Equals(V1VolumeDevice? 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 ==(V1VolumeDevice?, V1VolumeDevice?)
Declaration
public static bool operator ==(V1VolumeDevice? left, V1VolumeDevice? right)
Parameters
Returns
operator !=(V1VolumeDevice?, V1VolumeDevice?)
Declaration
public static bool operator !=(V1VolumeDevice? left, V1VolumeDevice? right)
Parameters
Returns
Implements