Skip to main content

front_door_name_availability_with_subscription

Creates, updates, deletes, gets or lists a front_door_name_availability_with_subscription resource.

Overview

Namefront_door_name_availability_with_subscription
TypeResource
Idazure.front_door.front_door_name_availability_with_subscription

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
messagestringThe detailed error message describing why the name is not available.
nameAvailabilitystringIndicates whether the name is available. Known values are: "Available" and "Unavailable". (Available, Unavailable)
reasonstringThe reason why the name is not available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
checkselectsubscription_idCheck 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.

NameDatatypeDescription
subscription_idstring

SELECT examples

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
;