mirror of https://github.com/pulumi/pulumi.git
15 lines
391 B
C#
15 lines
391 B
C#
// Copyright 2016-2022, Pulumi Corporation
|
|
|
|
namespace Pulumi
|
|
{
|
|
public partial class Deployment
|
|
{
|
|
internal class RunnerOptions
|
|
{
|
|
/// <summary>
|
|
/// Returns whether or not the runner is executing an inline program from the Automation API
|
|
/// </summary>
|
|
public bool IsInlineAutomationProgram { get; set; }
|
|
}
|
|
}
|
|
} |