front_door_name_availability_with_subscription
Creates, updates, deletes, gets or lists a front_door_name_availability_with_subscription resource.
Overview
| Name | front_door_name_availability_with_subscription |
| Type | Resource |
| Id | azure.front_door.front_door_name_availability_with_subscription |
Fields
The following fields are returned by SELECT queries:
- check
| Name | Datatype | Description |
|---|---|---|
message | string | The detailed error message describing why the name is not available. |
nameAvailability | string | Indicates whether the name is available. Known values are: "Available" and "Unavailable". (Available, Unavailable) |
reason | string | The reason why the name is not available. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
check | select | subscription_id | Check the availability of a Front Door subdomain. |
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
Check the availability of a Front Door subdomain.
SELECT
message,
nameAvailability,
reason
FROM azure.front_door.front_door_name_availability_with_subscription
WHERE subscription_id = '{{ subscription_id }}' -- required
;