UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

74 lines (73 loc) 2.6 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists a workflow run expression trace. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listWorkflowRunActionExpressionTraces(args: ListWorkflowRunActionExpressionTracesArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkflowRunActionExpressionTracesResult>; export interface ListWorkflowRunActionExpressionTracesArgs { /** * The workflow action name. */ actionName: string; /** * Site name. */ name: string; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: string; /** * The workflow run name. */ runName: string; /** * The workflow name. */ workflowName: string; } /** * The expression traces. */ export interface ListWorkflowRunActionExpressionTracesResult { readonly inputs?: outputs.web.ExpressionRootResponse[]; /** * The link used to get the next page of recommendations. */ readonly nextLink?: string; readonly value?: any; } /** * Lists a workflow run expression trace. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01, 2024-11-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listWorkflowRunActionExpressionTracesOutput(args: ListWorkflowRunActionExpressionTracesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkflowRunActionExpressionTracesResult>; export interface ListWorkflowRunActionExpressionTracesOutputArgs { /** * The workflow action name. */ actionName: pulumi.Input<string>; /** * Site name. */ name: pulumi.Input<string>; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: pulumi.Input<string>; /** * The workflow run name. */ runName: pulumi.Input<string>; /** * The workflow name. */ workflowName: pulumi.Input<string>; }