Package org.cdk8s.plus20
Interface AzureDiskPersistentVolumeProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,PersistentVolumeProps,ResourceProps
- All Known Implementing Classes:
AzureDiskPersistentVolumeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.56.0 (build 55e7d15)", date="2022-04-13T14:52:28.825Z") @Stability(Stable) public interface AzureDiskPersistentVolumeProps extends software.amazon.jsii.JsiiSerializable, PersistentVolumeProps
Properties for `AzureDiskPersistentVolume`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAzureDiskPersistentVolumeProps.BuilderA builder forAzureDiskPersistentVolumePropsstatic classAzureDiskPersistentVolumeProps.Jsii$ProxyAn implementation forAzureDiskPersistentVolumeProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static AzureDiskPersistentVolumeProps.Builderbuilder()default AzureDiskPersistentVolumeCachingModegetCachingMode()Host Caching mode.StringgetDiskName()The Name of the data disk in the blob storage.StringgetDiskUri()The URI the data disk in the blob storage.default StringgetFsType()Filesystem type to mount.default AzureDiskPersistentVolumeKindgetKind()Kind of disk.default BooleangetReadOnly()Force the ReadOnly setting in VolumeMounts.-
Methods inherited from interface org.cdk8s.plus20.PersistentVolumeProps
getAccessModes, getClaim, getMountOptions, getReclaimPolicy, getStorage, getStorageClassName, getVolumeMode
-
Methods inherited from interface org.cdk8s.plus20.ResourceProps
getMetadata
-
-
-
-
Method Detail
-
getDiskName
@Stability(Stable) @NotNull String getDiskName()
The Name of the data disk in the blob storage.
-
getDiskUri
@Stability(Stable) @NotNull String getDiskUri()
The URI the data disk in the blob storage.
-
getCachingMode
@Stability(Stable) @Nullable default AzureDiskPersistentVolumeCachingMode getCachingMode()
Host Caching mode.Default: - AzureDiskPersistentVolumeCachingMode.NONE.
-
getFsType
@Stability(Stable) @Nullable default String getFsType()
Filesystem type to mount.Must be a filesystem type supported by the host operating system.
Default: 'ext4'
-
getKind
@Stability(Stable) @Nullable default AzureDiskPersistentVolumeKind getKind()
Kind of disk.Default: AzureDiskPersistentVolumeKind.SHARED
-
getReadOnly
@Stability(Stable) @Nullable default Boolean getReadOnly()
Force the ReadOnly setting in VolumeMounts.Default: false
-
builder
@Stability(Stable) static AzureDiskPersistentVolumeProps.Builder builder()
-
-