@kengachu-pulumi/azure-native-web
Version:
Pulumi Azure Native package for web
68 lines (67 loc) • 2.31 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
* Workflow properties definition.
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 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 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: types.outputs.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. 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>;
}