# IdRangeV1Beta1 Properties

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

Represents a range of IDs with a minimum and maximum value. This can be used to specify a set of allowable IDs for policies or configurations requiring numeric ID ranges (e.g., supplemental groups, run-as-user configurations).

## Max

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

Gets or sets the maximum value in the ID range. This property represents the upper bound for the range of IDs within the specified limits.

```csharp
public long Max { get; set; }
```

## Min

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

Gets or sets the minimum value for the ID range.

```csharp
public long Min { get; set; }
```
