Package org.cdk8s.plus25.k8s
Interface AzureFilePersistentVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AzureFilePersistentVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.458Z") @Stability(Stable) public interface AzureFilePersistentVolumeSource extends software.amazon.jsii.JsiiSerializable
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAzureFilePersistentVolumeSource.BuilderA builder forAzureFilePersistentVolumeSourcestatic classAzureFilePersistentVolumeSource.Jsii$ProxyAn implementation forAzureFilePersistentVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AzureFilePersistentVolumeSource.Builderbuilder()default BooleangetReadOnly()readOnly defaults to false (read/write).StringgetSecretName()secretName is the name of secret that contains Azure Storage Account Name and Key.default StringgetSecretNamespace()secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod.StringgetShareName()shareName is the azure Share Name.
-
-
-
Method Detail
-
getSecretName
@Stability(Stable) @NotNull String getSecretName()
secretName is the name of secret that contains Azure Storage Account Name and Key.
-
getShareName
@Stability(Stable) @NotNull String getShareName()
shareName is the azure Share Name.
-
getReadOnly
@Stability(Stable) @Nullable default Boolean getReadOnly()
readOnly defaults to false (read/write).ReadOnly here will force the ReadOnly setting in VolumeMounts.
-
getSecretNamespace
@Stability(Stable) @Nullable default String getSecretNamespace()
secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod.
-
builder
@Stability(Stable) static AzureFilePersistentVolumeSource.Builder builder()
-
-