Package org.cdk8s.plus23.k8s
Interface KubeStatusProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeStatusProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.534Z") @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 class
KubeStatusProps.Builder
A builder forKubeStatusProps
static class
KubeStatusProps.Jsii$Proxy
An implementation forKubeStatusProps
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static KubeStatusProps.Builder
builder()
default Number
getCode()
Suggested HTTP return code for this status, 0 if not set.default StatusDetails
getDetails()
Extended data associated with the reason.default String
getMessage()
A human-readable description of the status of this operation.default ListMeta
getMetadata()
Standard list metadata.default String
getReason()
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.Builder
ofKubeStatusProps
-
-