v1.1.0
Latest
2021.3+
Class AllocationRequest
A request to create an allocation.
Inherited Members
Namespace: Unity.Services.Relay.Models
Syntax
[Preserve]
public class AllocationRequest
Constructors
AllocationRequest(Int32, String)
A request to create an allocation.
Declaration
[Preserve]
public AllocationRequest(int maxConnections, string region = null)
Parameters
Type | Name | Description |
---|---|---|
Int32 | maxConnections | The maximum number of peer connections allowed for this allocation. The Allocations service also uses this number to find a Relay with sufficient capacity. |
String | region | The region in which to create this allocation. Get a list of supported values from the |
Properties
MaxConnections
The maximum number of peer connections allowed for this allocation. The Allocations service also uses this number to find a Relay with sufficient capacity.
Declaration
[Preserve]
public int MaxConnections { get; }
Property Value
Type | Description |
---|---|
Int32 |
Region
The region in which to create this allocation. Get a list of supported values from the /regions
endpoint or omit this parameter to use the default region.
Declaration
[Preserve]
public string Region { get; }
Property Value
Type | Description |
---|---|
String |