Package org.cdk8s.plus24.k8s
Interface ProjectedVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ProjectedVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:02.298Z") @Stability(Stable) public interface ProjectedVolumeSource extends software.amazon.jsii.JsiiSerializable
Represents a projected volume source.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ProjectedVolumeSource.Builder
A builder forProjectedVolumeSource
static class
ProjectedVolumeSource.Jsii$Proxy
An implementation forProjectedVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ProjectedVolumeSource.Builder
builder()
default Number
getDefaultMode()
defaultMode are the mode bits used to set permissions on created files by default.default List<VolumeProjection>
getSources()
sources is the list of volume projections.
-
-
-
Method Detail
-
getDefaultMode
@Stability(Stable) @Nullable default Number getDefaultMode()
defaultMode are the mode bits used to set permissions on created files by default.Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
-
getSources
@Stability(Stable) @Nullable default List<VolumeProjection> getSources()
sources is the list of volume projections.
-
builder
@Stability(Stable) static ProjectedVolumeSource.Builder builder()
- Returns:
- a
ProjectedVolumeSource.Builder
ofProjectedVolumeSource
-
-