# io.k8s.api.apps.v1.ReplicaSetCondition

From **Kubernetes**.

ReplicaSetCondition describes the state of a replica set at a certain point.

- Type: `object`

## Properties

### `lastTransitionTime`

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

### `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 replica set condition.

## JSON Schema

```json
{"description":"ReplicaSetCondition describes the state of a replica set at a certain point.","properties":{"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"The last time the condition transitioned from one status to another."},"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 replica set condition.","type":"string"}},"type":"object"}
```
