# io.k8s.api.core.v1.ResourceClaim

From **Kubernetes**.

ResourceClaim references one entry in PodSpec.ResourceClaims.

- Type: `object`

## Properties

### `name`

- Required: true
- Type: `string`

Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.

### `request`

- Required: false
- Type: `string`

Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request.

## JSON Schema

```json
{"description":"ResourceClaim references one entry in PodSpec.ResourceClaims.","properties":{"name":{"default":"","description":"Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.","type":"string"},"request":{"description":"Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request.","type":"string"}},"required":["name"],"type":"object"}
```
