mirror of
https://github.com/actions/runner.git
synced 2025-12-28 04:17:51 +08:00
26 lines
622 B
C#
26 lines
622 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
/// <summary>
|
|
/// Properties to be included or expanded in environment objects. This is useful when getting a single environment.
|
|
/// </summary>
|
|
[Flags]
|
|
[DataContract]
|
|
public enum EnvironmentExpands
|
|
{
|
|
/// <summary>
|
|
/// No additional properties
|
|
/// </summary>
|
|
[EnumMember]
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Include resource references referring to the environment.
|
|
/// </summary>
|
|
[EnumMember]
|
|
ResourceReferences = 1
|
|
}
|
|
}
|