mirror of
https://github.com/actions/runner.git
synced 2025-12-28 20:37:54 +08:00
GitHub Actions Runner
This commit is contained in:
25
src/Sdk/DTWebApi/WebApi/Environment/EnvironmentExpands.cs
Normal file
25
src/Sdk/DTWebApi/WebApi/Environment/EnvironmentExpands.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user