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