mirror of https://github.com/pulumi/pulumi.git
20 lines
467 B
C#
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; }
|
|
}
|
|
}
|