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
View Source
V1VolumeDevice()
Declaration
View Source
V1VolumeDevice(V1VolumeDevice)
Declaration
protected V1VolumeDevice(V1VolumeDevice original)
Parameters
Properties
View Source
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
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Name
name must match the name of a persistentVolumeClaim in the pod
Declaration
[JsonPropertyName("name")]
public string Name { 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(V1VolumeDevice?)
Declaration
public virtual bool Equals(V1VolumeDevice? 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 ==(V1VolumeDevice?, V1VolumeDevice?)
Declaration
public static bool operator ==(V1VolumeDevice? left, V1VolumeDevice? right)
Parameters
Returns
View Source
operator !=(V1VolumeDevice?, V1VolumeDevice?)
Declaration
public static bool operator !=(V1VolumeDevice? left, V1VolumeDevice? right)
Parameters
Returns
Implements