pulumi/sdk/dotnet/Pulumi/Deployment/IRunner.cs

18 lines
587 B
C#

// Copyright 2016-2019, Pulumi Corporation
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Pulumi
{
internal interface IRunner
{
void RegisterTask(string description, Task task);
Task<int> RunAsync(Func<Task<IDictionary<string, object?>>> func, StackOptions? options);
Task<int> RunAsync<TStack>() where TStack : Stack, new();
Task<int> RunAsync<TStack>(Func<TStack> stackFactory) where TStack : Stack;
Task<int> RunAsync<TStack>(IServiceProvider serviceProvider) where TStack : Stack;
}
}