Interface IMultiplayMachinesAdminApi
Represents a collection of functions to interact with the API endpoints
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
public interface IMultiplayMachinesAdminApi : IApiAccessor
Methods
ListMachines(string, string, string, string, string, string, string, string, string, string, string, string, CancellationToken)
List machines
Declaration
ApiOperation<List<MultiplayMachinesMachine>> ListMachines(string projectId, string environmentId, string limit = null, string lastId = null, string lastVal = null, string sortBy = null, string sortDir = null, string fleetId = null, string locationId = null, string hardwareType = null, string partial = null, string status = null, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | projectId | The project's Project ID |
| string | environmentId | The Environment ID of a project |
| string | limit | Results limit (optional) |
| string | lastId | Last ID (optional) |
| string | lastVal | Last value (optional) |
| string | sortBy | Sort column (optional) |
| string | sortDir | Sort direction (optional, default to ASC) |
| string | fleetId | Fleet ID (optional) |
| string | locationId | Location ID (optional) |
| string | hardwareType | Hardware Type (optional) |
| string | partial | Partial Filter (optional) |
| string | status | Status (optional) |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| ApiOperation<List<MultiplayMachinesMachine>> | The operation |