# PodResourceClaimV1 Properties

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

Represents a resource claim specification for a Kubernetes pod.

## Name

- Name: `Name`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/PodResourceClaimV1.cs)

Gets or sets the name of the resource claim associated with the Pod. This property represents the alias "name" in the serialized YAML format.

```csharp
public string Name { get; set; }
```

## ResourceClaimName

- Name: `ResourceClaimName`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/PodResourceClaimV1.cs)

Gets or sets the name of the referenced resource claim associated with the pod. This is used to identify the resource claim that provides specific resources to the pod in a Kubernetes environment.

```csharp
public string ResourceClaimName { get; set; }
```

## ResourceClaimTemplateName

- Name: `ResourceClaimTemplateName`
- Modifiers: `get; set`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/PodResourceClaimV1.cs)

Gets or sets the name of the resource claim template associated with the pod. This property specifies the template to be used for creating a resource claim dynamically, enabling resource allocation for the pod.

```csharp
public string ResourceClaimTemplateName { get; set; }
```
