pulumi/sdk/dotnet/Pulumi.Automation/PreviewOptions.cs

23 lines
615 B
C#

// Copyright 2016-2021, Pulumi Corporation
using System.Collections.Generic;
namespace Pulumi.Automation
{
/// <summary>
/// Options controlling the behavior of an <see cref="WorkspaceStack.PreviewAsync(PreviewOptions, System.Threading.CancellationToken)"/> operation.
/// </summary>
public sealed class PreviewOptions : UpdateOptions
{
public bool? ExpectNoChanges { get; set; }
public bool? Diff { get; set; }
public List<string>? Replace { get; set; }
public bool? TargetDependents { get; set; }
public PulumiFn? Program { get; set; }
}
}