top_level_domains
Creates, updates, deletes, gets or lists a top_level_domains
resource.
Overview
Name | top_level_domains |
Type | Resource |
Id | azure.app_service.top_level_domains |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | TopLevelDomain resource specific properties |
type | string | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | TopLevelDomain resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | name , subscriptionId | Description for Get details of a top-level domain. | |
list | select | subscriptionId | Description 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.
Name | Datatype | Description |
---|---|---|
name | string | Name of the top-level domain. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- get
- list
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
;
Description for Get all top-level domains supported for registration.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.top_level_domains
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;