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

20 lines
467 B
C#

// Copyright 2016-2021, Pulumi Corporation
using System.Collections.Generic;
namespace Pulumi.Automation
{
/// <summary>
/// Common options controlling the behavior of update actions taken
/// against an instance of <see cref="WorkspaceStack"/>.
/// </summary>
public class UpdateOptions
{
public int? Parallel { get; set; }
public string? Message { get; set; }
public List<string>? Target { get; set; }
}
}