@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Lists a workflow run expression trace.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listWorkflowRunActionRepetitionExpressionTraces(args: ListWorkflowRunActionRepetitionExpressionTracesArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkflowRunActionRepetitionExpressionTracesResult>;
export interface ListWorkflowRunActionRepetitionExpressionTracesArgs {
/**
* The workflow action name.
*/
actionName: string;
/**
* The workflow repetition.
*/
repetitionName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The workflow run name.
*/
runName: string;
/**
* The workflow name.
*/
workflowName: string;
}
/**
* The expression traces.
*/
export interface ListWorkflowRunActionRepetitionExpressionTracesResult {
readonly inputs?: outputs.logic.ExpressionRootResponse[];
}
/**
* Lists a workflow run expression trace.
*
* Uses Azure REST API version 2019-05-01.
*
* Other available API versions: 2016-06-01, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native logic [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listWorkflowRunActionRepetitionExpressionTracesOutput(args: ListWorkflowRunActionRepetitionExpressionTracesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkflowRunActionRepetitionExpressionTracesResult>;
export interface ListWorkflowRunActionRepetitionExpressionTracesOutputArgs {
/**
* The workflow action name.
*/
actionName: pulumi.Input<string>;
/**
* The workflow repetition.
*/
repetitionName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The workflow run name.
*/
runName: pulumi.Input<string>;
/**
* The workflow name.
*/
workflowName: pulumi.Input<string>;
}