# io.k8s.api.scheduling.v1alpha3.DisruptionMode

From **Kubernetes**.

DisruptionMode defines how individual entities within a group can be disrupted. Exactly one mode can be set.

- Type: `object`

## Properties

### `all`

- Required: false
all specifies that all children can only be disrupted together.

### `single`

- Required: false
single specifies that children can be disrupted independently from each other.

## JSON Schema

```json
{"description":"DisruptionMode defines how individual entities within a group can be disrupted. Exactly one mode can be set.","properties":{"all":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.scheduling.v1alpha3.AllDisruptionMode"}],"description":"all specifies that all children can only be disrupted together."},"single":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.scheduling.v1alpha3.SingleDisruptionMode"}],"description":"single specifies that children can be disrupted independently from each other."}},"type":"object","x-kubernetes-unions":[{"fields-to-discriminateBy":{"all":"All","single":"Single"}}]}
```
