# io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition

From **Kubernetes**.

HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

- Type: `object`

## Properties

### `lastTransitionTime`

- Required: false
lastTransitionTime is the last time the condition transitioned from one status to another

### `message`

- Required: false
- Type: `string`

message is a human-readable explanation containing details about the transition

### `observedGeneration`

- Required: false
- Type: `integer`
- Format: `int64`

observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.

### `reason`

- Required: false
- Type: `string`

reason is the reason for the condition's last transition.

### `status`

- Required: true
- Type: `string`

status is the status of the condition (True, False, Unknown)

### `type`

- Required: true
- Type: `string`

type describes the current condition

## JSON Schema

```json
{"description":"HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.","properties":{"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"lastTransitionTime is the last time the condition transitioned from one status to another"},"message":{"description":"message is a human-readable explanation containing details about the transition","type":"string"},"observedGeneration":{"description":"observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.","format":"int64","type":"integer"},"reason":{"description":"reason is the reason for the condition's last transition.","type":"string"},"status":{"default":"","description":"status is the status of the condition (True, False, Unknown)","type":"string"},"type":{"default":"","description":"type describes the current condition","type":"string"}},"required":["type","status"],"type":"object"}
```
