top_level_domains_agreements
Creates, updates, deletes, gets or lists a top_level_domains_agreements
resource.
Overview
Name | top_level_domains_agreements |
Type | Resource |
Id | azure.app_service.top_level_domains_agreements |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
agreementKey | string | Unique identifier for the agreement. |
content | string | Agreement details. |
title | string | Agreement title. |
url | string | URL where a copy of the agreement details is hosted. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | name , subscriptionId | Description for Gets all legal agreements that user needs to accept before purchasing a domain. |
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
- list
Description for Gets all legal agreements that user needs to accept before purchasing a domain.
SELECT
agreementKey,
content,
title,
url
FROM azure.app_service.top_level_domains_agreements
WHERE name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;