bots_check_name_availabilities
Creates, updates, deletes, gets or lists a bots_check_name_availabilities
resource.
Overview
Name | bots_check_name_availabilities |
Type | Resource |
Id | azure.bot_service.bots_check_name_availabilities |
Fields
The following fields are returned by SELECT
queries:
- get
The resource provider should return 200 (OK) to indicate that the operation completed successfully. For other errors (e.g. internal errors) use the appropriate HTTP error code.
The nextLink field is expected to point to the URL the client should use to fetch the next page (per server side paging). This matches the OData guidelines for paged responses. If a resource provider does not support paging, it should return the same body but leave nextLink empty for future compatibility.
For a detailed explanation of each field in the response body, please refer to the request body description in the PUT resource section.
Name | Datatype | Description |
---|---|---|
absCode | string | response code from ABS |
message | string | additional message from the bot management api showing why a bot name is not available |
valid | boolean | indicates if the bot name is valid. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | Check whether a bot name is available. |
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 |
---|
SELECT
examples
- get
Check whether a bot name is available.
SELECT
absCode,
message,
valid
FROM azure.bot_service.bots_check_name_availabilities
;