Skip to main content

top_level_domains

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

Overview

Nametop_level_domains
TypeResource
Idazure.app_service.top_level_domains

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectTopLevelDomain resource specific properties
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectname, subscriptionIdDescription for Get details of a top-level domain.
listselectsubscriptionIdDescription for Get all top-level domains supported for registration.

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
namestringName of the top-level domain.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Description for Get details of a top-level domain.

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.top_level_domains
WHERE name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;