mirror of https://github.com/pulumi/pulumi.git
43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
// Copyright 2016-2019, Pulumi Corporation
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pulumi
|
|
{
|
|
internal interface IDeployment
|
|
{
|
|
/// <summary>
|
|
/// Returns the current stack name.
|
|
/// </summary>
|
|
string StackName { get; }
|
|
|
|
/// <summary>
|
|
/// Returns the current project name.
|
|
/// </summary>
|
|
string ProjectName { get; }
|
|
|
|
/// <summary>
|
|
/// Whether or not the application is currently being previewed or actually applied.
|
|
/// </summary>
|
|
bool IsDryRun { get; }
|
|
|
|
/// <summary>
|
|
/// Dynamically invokes the function '<paramref name="token"/>', which is offered by a
|
|
/// provider plugin.
|
|
/// <para/>
|
|
/// The result of <see cref="InvokeAsync"/> will be a <see cref="Task"/> resolved to the
|
|
/// result value of the provider plugin.
|
|
/// <para/>
|
|
/// The <paramref name="args"/> inputs can be a bag of computed values(including, `T`s,
|
|
/// <see cref="Task{TResult}"/>s, <see cref="Output{T}"/>s etc.).
|
|
/// </summary>
|
|
Task<T> InvokeAsync<T>(string token, InvokeArgs args, InvokeOptions? options = null);
|
|
|
|
/// <summary>
|
|
/// Same as <see cref="InvokeAsync{T}(string, InvokeArgs, InvokeOptions)"/>, however the
|
|
/// return value is ignored.
|
|
/// </summary>
|
|
Task InvokeAsync(string token, InvokeArgs args, InvokeOptions? options = null);
|
|
}
|
|
}
|