check_domain_availabilities
Creates, updates, deletes, gets or lists a check_domain_availabilities resource.
Overview
| Name | check_domain_availabilities |
| Type | Resource |
| Id | azure.cognitive_services.check_domain_availabilities |
Fields
The following fields are returned by SELECT queries:
- check_domain_availability
| Name | Datatype | Description |
|---|---|---|
isSubdomainAvailable | boolean | Indicates the given SKU is available or not. |
kind | string | The kind (type) of cognitive service account. |
reason | string | Reason why the SKU is not available. |
subdomainName | string | The subdomain name to use. |
type | string | The Type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
check_domain_availability | select | subscription_id | Check whether a domain 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 |
|---|---|---|
subscription_id | string |
SELECT examples
- check_domain_availability
Check whether a domain is available.
SELECT
isSubdomainAvailable,
kind,
reason,
subdomainName,
type
FROM azure.cognitive_services.check_domain_availabilities
WHERE subscription_id = '{{ subscription_id }}' -- required
;