# io.k8s.api.resource.v1alpha3.ShareableCapacityStatus

From **Kubernetes**.

ShareableCapacityStatus reports aggregate amounts for a single shareable capacity key.

- Type: `object`

## Properties

### `available`

- Required: true
Available is Total minus Consumed, never negative.

### `consumed`

- Required: true
Consumed is the amount drawn by current allocations.

### `name`

- Required: true
- Type: `string`

Name is the capacity name.

### `total`

- Required: true
Total is the sum of this capacity across shareable devices in the pool.

## JSON Schema

```json
{"description":"ShareableCapacityStatus reports aggregate amounts for a single shareable capacity key.","properties":{"available":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"}],"description":"Available is Total minus Consumed, never negative."},"consumed":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"}],"description":"Consumed is the amount drawn by current allocations."},"name":{"description":"Name is the capacity name.","type":"string"},"total":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"}],"description":"Total is the sum of this capacity across shareable devices in the pool."}},"required":["name","total","consumed","available"],"type":"object"}
```
