mirror of https://github.com/pulumi/pulumi.git
20 lines
487 B
C#
20 lines
487 B
C#
// Copyright 2016-2021, Pulumi Corporation
|
|
|
|
namespace Pulumi.Automation
|
|
{
|
|
public class InlineProgramArgs : LocalWorkspaceOptions
|
|
{
|
|
public string StackName { get; }
|
|
|
|
public InlineProgramArgs(
|
|
string projectName,
|
|
string stackName,
|
|
PulumiFn program)
|
|
{
|
|
this.ProjectSettings = ProjectSettings.Default(projectName);
|
|
this.StackName = stackName;
|
|
this.Program = program;
|
|
}
|
|
}
|
|
}
|