Files
UnrealEngineUWP/Engine/Source/Programs/Horde/Horde.Server/Compute/ComputeAclAction.cs
carl bystrom 5bdb195421 Horde: Add support for declaring resource demands for a compute task session
[CL 28187626 by carl bystrom in ue5-main branch]
2023-09-25 10:38:16 -04:00

23 lines
575 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using Horde.Server.Acls;
namespace Horde.Server.Compute
{
/// <summary>
/// ACL actions for compute service
/// </summary>
public static class ComputeAclAction
{
/// <summary>
/// User can add tasks to the compute cluster
/// </summary>
public static AclAction AddComputeTasks { get; } = new AclAction("AddComputeTasks");
/// <summary>
/// User can get and list tasks from the compute cluster
/// </summary>
public static AclAction GetComputeTasks { get; } = new AclAction("GetComputeTasks");
}
}