Package org.cdk8s.plus25.k8s
Interface PortworxVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PortworxVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.778Z") @Stability(Stable) public interface PortworxVolumeSource extends software.amazon.jsii.JsiiSerializable
PortworxVolumeSource represents a Portworx volume resource.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPortworxVolumeSource.BuilderA builder forPortworxVolumeSourcestatic classPortworxVolumeSource.Jsii$ProxyAn implementation forPortworxVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static PortworxVolumeSource.Builderbuilder()default StringgetFsType()fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.default BooleangetReadOnly()readOnly defaults to false (read/write).StringgetVolumeId()volumeID uniquely identifies a Portworx volume.
-
-
-
Method Detail
-
getVolumeId
@Stability(Stable) @NotNull String getVolumeId()
volumeID uniquely identifies a Portworx volume.
-
getFsType
@Stability(Stable) @Nullable default String getFsType()
fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
-
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 PortworxVolumeSource.Builder builder()
- Returns:
- a
PortworxVolumeSource.BuilderofPortworxVolumeSource
-
-