# VolumeResourceRequirementsV1 Properties

- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Type: [VolumeResourceRequirementsV1](/reference/api/csharp/aspire.hosting.kubernetes/volumeresourcerequirementsv1.md)
- Kind: `Properties`
- Members: `2`

Represents the resource requirements for a Kubernetes volume.

## Limits

- Name: `Limits`
- Modifiers: `get`
- Returns: `Dictionary<string, string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/VolumeResourceRequirementsV1.cs#L25)

Represents the upper bound or maximum resource usage constraints for a volume in a Kubernetes environment. This property specifies the resource limits, such as storage capacity or other volume-specific constraints, that a volume cannot exceed during its lifecycle.

```csharp
public Dictionary<string, string> Limits { get; }
```

## Requests

- Name: `Requests`
- Modifiers: `get`
- Returns: `Dictionary<string, string>`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/VolumeResourceRequirementsV1.cs#L33)

Represents the minimum amount of compute resources required for a volume in a Kubernetes environment. Specifies the resource requests for the volume, such as storage capacity or other resource types. Used to define guaranteed resource allocation for the volume.

```csharp
public Dictionary<string, string> Requests { get; }
```
