Class V1AzureDiskVolumeSource
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the
pod.
Inheritance
V1AzureDiskVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1AzureDiskVolumeSource : IEquatable<V1AzureDiskVolumeSource>
Constructors
View Source
V1AzureDiskVolumeSource()
Declaration
public V1AzureDiskVolumeSource()
View Source
V1AzureDiskVolumeSource(V1AzureDiskVolumeSource)
Declaration
protected V1AzureDiskVolumeSource(V1AzureDiskVolumeSource original)
Parameters
Properties
View Source
CachingMode
cachingMode is the Host Caching mode: None, Read Only, Read Write.
Declaration
[JsonPropertyName("cachingMode")]
public string CachingMode { get; set; }
Property Value
View Source
DiskName
diskName is the Name of the data disk in the blob storage
Declaration
[JsonPropertyName("diskName")]
public string DiskName { get; set; }
Property Value
View Source
DiskURI
diskURI is the URI of data disk in the blob storage
Declaration
[JsonPropertyName("diskURI")]
public string DiskURI { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
FsType
fsType is Filesystem type to mount. Must be a filesystem type supported by the
host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be
"ext4" if unspecified.
Declaration
[JsonPropertyName("fsType")]
public string FsType { get; set; }
Property Value
View Source
Kind
kind expected values are Shared: multiple blob disks per storage account
Dedicated: single blob disk per storage account Managed: azure managed data
disk (only in managed availability set). defaults to shared
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
ReadOnlyProperty
readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly
setting in VolumeMounts.
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { 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(V1AzureDiskVolumeSource?)
Declaration
public virtual bool Equals(V1AzureDiskVolumeSource? 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 ==(V1AzureDiskVolumeSource?, V1AzureDiskVolumeSource?)
Declaration
public static bool operator ==(V1AzureDiskVolumeSource? left, V1AzureDiskVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1AzureDiskVolumeSource?, V1AzureDiskVolumeSource?)
Declaration
public static bool operator !=(V1AzureDiskVolumeSource? left, V1AzureDiskVolumeSource? right)
Parameters
Returns
Implements