bot_connection_service_providers
Creates, updates, deletes, gets or lists a bot_connection_service_providers resource.
Overview
| Name | bot_connection_service_providers |
| Type | Resource |
| Id | azure.bot_service.bot_connection_service_providers |
Fields
The following fields are returned by SELECT queries:
- list
If resource is retrieved successfully, the service should return 200 (OK).
| Name | Datatype | Description |
|---|---|---|
properties | object | The Properties of a Service Provider Object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | Lists the available Service Providers for creating Connection Settings |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
subscriptionId | string | Azure Subscription ID. |
SELECT examples
- list
Lists the available Service Providers for creating Connection Settings
SELECT
properties
FROM azure.bot_service.bot_connection_service_providers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;