in processing-pipelines/image-v2/filter/csharp/Startup.cs [102:115]
private async Task<Execution> ExecuteWorkflow(string projectId, string region, string workflow, string args)
{
var client = await ExecutionsClient.CreateAsync();
var request = new CreateExecutionRequest() {
Parent = WorkflowName.Format(projectId, region, workflow),
Execution = new Execution() {
Argument = args
}
};
var response = await client.CreateExecutionAsync(request);
return response;
}