mirror of
https://github.com/actions/runner.git
synced 2025-12-18 00:07:08 +00:00
GitHub Actions Runner
This commit is contained in:
31
src/Sdk/DTWebApi/WebApi/DeploymentPoolSummaryExpands.cs
Normal file
31
src/Sdk/DTWebApi/WebApi/DeploymentPoolSummaryExpands.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace GitHub.DistributedTask.WebApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Properties to be included or expanded in deployment pool summary objects. This is useful when getting a single or list of deployment pool summaries.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
[DataContract]
|
||||
public enum DeploymentPoolSummaryExpands
|
||||
{
|
||||
/// <summary>
|
||||
/// No additional properties
|
||||
/// </summary>
|
||||
[EnumMember]
|
||||
None = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Include deployment groups referring to the deployment pool.
|
||||
/// </summary>
|
||||
[EnumMember]
|
||||
DeploymentGroups = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Include Resource referring to the deployment pool.
|
||||
/// </summary>
|
||||
[EnumMember]
|
||||
Resource = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user