Package org.cdk8s.plus25.k8s
Interface KubeStatusProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeStatusProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.718Z") @Stability(Stable) public interface KubeStatusProps extends software.amazon.jsii.JsiiSerializable
Status is a return value for calls that don't return other objects.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classKubeStatusProps.BuilderA builder forKubeStatusPropsstatic classKubeStatusProps.Jsii$ProxyAn implementation forKubeStatusProps
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static KubeStatusProps.Builderbuilder()default NumbergetCode()Suggested HTTP return code for this status, 0 if not set.default StatusDetailsgetDetails()Extended data associated with the reason.default StringgetMessage()A human-readable description of the status of this operation.default ListMetagetMetadata()Standard list metadata.default StringgetReason()A machine-readable description of why this operation is in the "Failure" status.
-
-
-
Method Detail
-
getCode
@Stability(Stable) @Nullable default Number getCode()
Suggested HTTP return code for this status, 0 if not set.
-
getDetails
@Stability(Stable) @Nullable default StatusDetails getDetails()
Extended data associated with the reason.Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
-
getMessage
@Stability(Stable) @Nullable default String getMessage()
A human-readable description of the status of this operation.
-
getMetadata
@Stability(Stable) @Nullable default ListMeta getMetadata()
Standard list metadata.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-
getReason
@Stability(Stable) @Nullable default String getReason()
A machine-readable description of why this operation is in the "Failure" status.If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
-
builder
@Stability(Stable) static KubeStatusProps.Builder builder()
- Returns:
- a
KubeStatusProps.BuilderofKubeStatusProps
-
-