Package org.cdk8s.plus25.k8s
Interface KubeCsiDriverProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeCsiDriverProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.602Z") @Stability(Stable) public interface KubeCsiDriverProps extends software.amazon.jsii.JsiiSerializable
CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster.Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classKubeCsiDriverProps.BuilderA builder forKubeCsiDriverPropsstatic classKubeCsiDriverProps.Jsii$ProxyAn implementation forKubeCsiDriverProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static KubeCsiDriverProps.Builderbuilder()default ObjectMetagetMetadata()Standard object metadata.CsiDriverSpecgetSpec()Specification of the CSI Driver.
-
-
-
Method Detail
-
getSpec
@Stability(Stable) @NotNull CsiDriverSpec getSpec()
Specification of the CSI Driver.
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object metadata.metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
builder
@Stability(Stable) static KubeCsiDriverProps.Builder builder()
- Returns:
- a
KubeCsiDriverProps.BuilderofKubeCsiDriverProps
-
-