UNPKG

@kengachu-pulumi/azure-native-web

Version:

Pulumi Azure Native package for web

82 lines (81 loc) 2.82 kB
import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * 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. 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 listWorkflowRunActionRepetitionExpressionTraces(args: ListWorkflowRunActionRepetitionExpressionTracesArgs, opts?: pulumi.InvokeOptions): Promise<ListWorkflowRunActionRepetitionExpressionTracesResult>; export interface ListWorkflowRunActionRepetitionExpressionTracesArgs { /** * The workflow action name. */ actionName: string; /** * Site name. */ name: string; /** * The workflow repetition. */ repetitionName: 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 ListWorkflowRunActionRepetitionExpressionTracesResult { readonly inputs?: types.outputs.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. 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 listWorkflowRunActionRepetitionExpressionTracesOutput(args: ListWorkflowRunActionRepetitionExpressionTracesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWorkflowRunActionRepetitionExpressionTracesResult>; export interface ListWorkflowRunActionRepetitionExpressionTracesOutputArgs { /** * The workflow action name. */ actionName: pulumi.Input<string>; /** * Site name. */ name: pulumi.Input<string>; /** * The workflow repetition. */ repetitionName: 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>; }