Package org.cdk8s.plus25.k8s
Interface CustomResourceSubresources
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CustomResourceSubresources.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.497Z") @Stability(Stable) public interface CustomResourceSubresources extends software.amazon.jsii.JsiiSerializable
CustomResourceSubresources defines the status and scale subresources for CustomResources.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCustomResourceSubresources.BuilderA builder forCustomResourceSubresourcesstatic classCustomResourceSubresources.Jsii$ProxyAn implementation forCustomResourceSubresources
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static CustomResourceSubresources.Builderbuilder()default CustomResourceSubresourceScalegetScale()scale indicates the custom resource should serve a/scalesubresource that returns anautoscaling/v1Scale object.default ObjectgetStatus()status indicates the custom resource should serve a/statussubresource.
-
-
-
Method Detail
-
getScale
@Stability(Stable) @Nullable default CustomResourceSubresourceScale getScale()
scale indicates the custom resource should serve a/scalesubresource that returns anautoscaling/v1Scale object.
-
getStatus
@Stability(Stable) @Nullable default Object getStatus()
status indicates the custom resource should serve a/statussubresource.When enabled: 1. requests to the custom resource primary endpoint ignore changes to the
statusstanza of the object. 2. requests to the custom resource/statussubresource ignore changes to anything other than thestatusstanza of the object.
-
builder
@Stability(Stable) static CustomResourceSubresources.Builder builder()
- Returns:
- a
CustomResourceSubresources.BuilderofCustomResourceSubresources
-
-