Show / Hide Table of Contents

Class V1AzureDiskVolumeSource

AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

Inheritance
object
V1AzureDiskVolumeSource
Implements
IEquatable<V1AzureDiskVolumeSource>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1AzureDiskVolumeSource original

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
Type Description
string
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
Type Description
string
View Source

DiskURI

diskURI is the URI of data disk in the blob storage

Declaration
[JsonPropertyName("diskURI")]
public string DiskURI { get; set; }
Property Value
Type Description
string
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
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
Type Description
string
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
Type Description
string
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
Type Description
bool?

Methods

View Source

Equals(object?)

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

Equals(V1AzureDiskVolumeSource?)

Declaration
public virtual bool Equals(V1AzureDiskVolumeSource? other)
Parameters
Type Name Description
V1AzureDiskVolumeSource other
Returns
Type Description
bool
View Source

GetHashCode()

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

PrintMembers(StringBuilder)

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

ToString()

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

Operators

View Source

operator ==(V1AzureDiskVolumeSource?, V1AzureDiskVolumeSource?)

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

operator !=(V1AzureDiskVolumeSource?, V1AzureDiskVolumeSource?)

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

Implements

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