Class V1AzureFileVolumeSource
AzureFile represents an Azure File Service mount on the host and bind mount to
the pod.
Inheritance
V1AzureFileVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1AzureFileVolumeSource : IEquatable<V1AzureFileVolumeSource>
Constructors
View Source
V1AzureFileVolumeSource()
Declaration
public V1AzureFileVolumeSource()
View Source
V1AzureFileVolumeSource(V1AzureFileVolumeSource)
Declaration
protected V1AzureFileVolumeSource(V1AzureFileVolumeSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
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
View Source
SecretName
secretName is the name of secret that contains Azure Storage Account Name and
Key
Declaration
[JsonPropertyName("secretName")]
public string SecretName { get; set; }
Property Value
View Source
ShareName
shareName is the azure share Name
Declaration
[JsonPropertyName("shareName")]
public string ShareName { 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(V1AzureFileVolumeSource?)
Declaration
public virtual bool Equals(V1AzureFileVolumeSource? 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 ==(V1AzureFileVolumeSource?, V1AzureFileVolumeSource?)
Declaration
public static bool operator ==(V1AzureFileVolumeSource? left, V1AzureFileVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1AzureFileVolumeSource?, V1AzureFileVolumeSource?)
Declaration
public static bool operator !=(V1AzureFileVolumeSource? left, V1AzureFileVolumeSource? right)
Parameters
Returns
Implements