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

34 lines (33 loc) 1.72 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the available Service Providers for creating Connection Settings * * Uses Azure REST API version 2023-09-15-preview. * * Other available API versions: 2022-09-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native botservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listBotConnectionServiceProviders(args?: ListBotConnectionServiceProvidersArgs, opts?: pulumi.InvokeOptions): Promise<ListBotConnectionServiceProvidersResult>; export interface ListBotConnectionServiceProvidersArgs { } /** * The list of bot service providers response. */ export interface ListBotConnectionServiceProvidersResult { /** * The link used to get the next page of bot service providers. */ readonly nextLink?: string; /** * Gets the list of bot service providers and their properties. */ readonly value: outputs.botservice.ServiceProviderResponse[]; } /** * Lists the available Service Providers for creating Connection Settings * * Uses Azure REST API version 2023-09-15-preview. * * Other available API versions: 2022-09-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native botservice [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listBotConnectionServiceProvidersOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListBotConnectionServiceProvidersResult>;