pulumi/sdk/dotnet/Pulumi.Automation/PluginInstallOptions.cs
Josh Studt 51b4f3d9bd
[auto/dotnet] - plugin installation options: exact version, server (#7796)
* add additional plugin install options

* update changelog

* slight re-name properties to be more idiomatic

* Apply suggestions from code review

Co-authored-by: Justin Van Patten <jvp@justinvp.com>

* Add support for old install plugin overload, and move unshipped api changes to shipped

* add breaking note to changelog

Co-authored-by: Justin Van Patten <jvp@justinvp.com>
2021-08-24 16:04:33 -04:00

17 lines
471 B
C#

namespace Pulumi.Automation
{
public class PluginInstallOptions
{
/// <summary>
/// If <c>true</c>, force installation of an exact version match (usually >= is accepted).
/// <para/>
/// Defaults to <c>false</c>.
/// </summary>
public bool ExactVersion { get; set; }
/// <summary>
/// A URL to download plugins from.
/// </summary>
public string? ServerUrl { get; set; }
}
}