Class V1AWSElasticBlockStoreVolumeSource
Represents a Persistent Disk resource in AWS.
An AWS EBS disk must exist before mounting to a container. The disk must also be
in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as
read/write once. AWS EBS volumes support ownership management and SELinux
relabeling.
Inheritance
V1AWSElasticBlockStoreVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1AWSElasticBlockStoreVolumeSource : IEquatable<V1AWSElasticBlockStoreVolumeSource>
Constructors
View Source
V1AWSElasticBlockStoreVolumeSource()
Declaration
public V1AWSElasticBlockStoreVolumeSource()
View Source
V1AWSElasticBlockStoreVolumeSource(V1AWSElasticBlockStoreVolumeSource)
Declaration
protected V1AWSElasticBlockStoreVolumeSource(V1AWSElasticBlockStoreVolumeSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
FsType
Declaration
[JsonPropertyName("fsType")]
public string FsType { get; set; }
Property Value
View Source
Partition
partition is the partition in the volume that you want to mount. If omitted, the
default is to mount by volume name. Examples: For volume /dev/sda1, you specify
the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or
you can leave the property empty).
Declaration
[JsonPropertyName("partition")]
public int? Partition { get; set; }
Property Value
View Source
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
View Source
VolumeID
Declaration
[JsonPropertyName("volumeID")]
public string VolumeID { 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(V1AWSElasticBlockStoreVolumeSource?)
Declaration
public virtual bool Equals(V1AWSElasticBlockStoreVolumeSource? 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 ==(V1AWSElasticBlockStoreVolumeSource?, V1AWSElasticBlockStoreVolumeSource?)
Declaration
public static bool operator ==(V1AWSElasticBlockStoreVolumeSource? left, V1AWSElasticBlockStoreVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1AWSElasticBlockStoreVolumeSource?, V1AWSElasticBlockStoreVolumeSource?)
Declaration
public static bool operator !=(V1AWSElasticBlockStoreVolumeSource? left, V1AWSElasticBlockStoreVolumeSource? right)
Parameters
Returns
Implements