# IdRangeV1Beta1

- Kind: `class`
- Package: [Aspire.Hosting.Kubernetes](/reference/api/csharp/aspire.hosting.kubernetes.md)
- Version: `13.3.0-preview.1.26254.5`
- Namespace: `Aspire.Hosting.Kubernetes.Resources`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Kubernetes/Resources/IDRangeV1Beta1.cs)

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).

## Definition

```csharp
namespace Aspire.Hosting.Kubernetes.Resources;

public sealed class IdRangeV1Beta1
{
    // ...
}
```

## Constructors

- [IdRangeV1Beta1](/reference/api/csharp/aspire.hosting.kubernetes/idrangev1beta1/constructors.md#constructor)

## Properties

- [Max](/reference/api/csharp/aspire.hosting.kubernetes/idrangev1beta1/properties.md#max) : `long` `get; set` -- 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.
- [Min](/reference/api/csharp/aspire.hosting.kubernetes/idrangev1beta1/properties.md#min) : `long` `get; set` -- Gets or sets the minimum value for the ID range.
