@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.34 kB
TypeScript
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>;
}