Package org.cdk8s.plus24.k8s
Interface FlockerVolumeSource
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FlockerVolumeSource.Jsii$Proxy
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:02.067Z") @Stability(Stable) public interface FlockerVolumeSource extends software.amazon.jsii.JsiiSerializable
Represents a Flocker volume mounted by the Flocker agent.One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FlockerVolumeSource.Builder
A builder forFlockerVolumeSource
static class
FlockerVolumeSource.Jsii$Proxy
An implementation forFlockerVolumeSource
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static FlockerVolumeSource.Builder
builder()
default String
getDatasetName()
datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated.default String
getDatasetUuid()
datasetUUID is the UUID of the dataset.
-
-
-
Method Detail
-
getDatasetName
@Stability(Stable) @Nullable default String getDatasetName()
datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated.
-
getDatasetUuid
@Stability(Stable) @Nullable default String getDatasetUuid()
datasetUUID is the UUID of the dataset.This is unique identifier of a Flocker dataset
-
builder
@Stability(Stable) static FlockerVolumeSource.Builder builder()
- Returns:
- a
FlockerVolumeSource.Builder
ofFlockerVolumeSource
-
-