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

68 lines (67 loc) 2.34 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Workflow properties definition. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 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 listWebAppWorkflowsConnections(args: ListWebAppWorkflowsConnectionsArgs, opts?: pulumi.InvokeOptions): Promise<ListWebAppWorkflowsConnectionsResult>; export interface ListWebAppWorkflowsConnectionsArgs { /** * Site name. */ name: string; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: string; } /** * Workflow properties definition. */ export interface ListWebAppWorkflowsConnectionsResult { /** * The resource id. */ readonly id: string; /** * The resource kind. */ readonly kind?: string; /** * The resource location. */ readonly location?: string; /** * Gets the resource name. */ readonly name: string; /** * Additional workflow properties. */ readonly properties: outputs.web.WorkflowEnvelopeResponseProperties; /** * Gets the resource type. */ readonly type: string; } /** * Workflow properties definition. * * Uses Azure REST API version 2024-04-01. * * Other available API versions: 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 listWebAppWorkflowsConnectionsOutput(args: ListWebAppWorkflowsConnectionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListWebAppWorkflowsConnectionsResult>; export interface ListWebAppWorkflowsConnectionsOutputArgs { /** * Site name. */ name: pulumi.Input<string>; /** * Name of the resource group to which the resource belongs. */ resourceGroupName: pulumi.Input<string>; }