Package org.cdk8s.plus24.k8s
Interface AzureFileVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AzureFileVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:01.989Z") @Stability(Stable) public interface AzureFileVolumeSource 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 class
AzureFileVolumeSource.Builder
A builder forAzureFileVolumeSource
static class
AzureFileVolumeSource.Jsii$Proxy
An implementation forAzureFileVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AzureFileVolumeSource.Builder
builder()
default Boolean
getReadOnly()
readOnly defaults to false (read/write).String
getSecretName()
secretName is the name of secret that contains Azure Storage Account Name and Key.String
getShareName()
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.
-
builder
@Stability(Stable) static AzureFileVolumeSource.Builder builder()
- Returns:
- a
AzureFileVolumeSource.Builder
ofAzureFileVolumeSource
-
-