Package org.cdk8s.plus24.k8s
Interface PortworxVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PortworxVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-05T02:57:36.712Z") @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 class
PortworxVolumeSource.Builder
A builder forPortworxVolumeSource
static class
PortworxVolumeSource.Jsii$Proxy
An implementation forPortworxVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static PortworxVolumeSource.Builder
builder()
default String
getFsType()
fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.default Boolean
getReadOnly()
readOnly defaults to false (read/write).String
getVolumeId()
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.Builder
ofPortworxVolumeSource
-
-