# io.k8s.api.apps.v1.DeploymentCondition

From **Kubernetes**.

DeploymentCondition describes the state of a deployment at a certain point.

- Type: `object`

## Properties

### `lastTransitionTime`

- Required: false
Last time the condition transitioned from one status to another.

### `lastUpdateTime`

- Required: false
The last time this condition was updated.

### `message`

- Required: false
- Type: `string`

A human readable message indicating details about the transition.

### `reason`

- Required: false
- Type: `string`

The reason for the condition's last transition.

### `status`

- Required: false
- Type: `string`

Status of the condition, one of True, False, Unknown.

### `type`

- Required: false
- Type: `string`

Type of deployment condition.

## JSON Schema

```json
{"description":"DeploymentCondition describes the state of a deployment at a certain point.","properties":{"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Last time the condition transitioned from one status to another."},"lastUpdateTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"The last time this condition was updated."},"message":{"description":"A human readable message indicating details about the transition.","type":"string"},"reason":{"description":"The reason for the condition's last transition.","type":"string"},"status":{"default":"","description":"Status of the condition, one of True, False, Unknown.","type":"string"},"type":{"default":"","description":"Type of deployment condition.","type":"string"}},"type":"object"}
```
