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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | name, subscriptionId | Description for Gets all legal agreements that user needs to accept before purchasing a domain. |
SELECT
examples
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 }}'
AND subscriptionId = '{{ subscriptionId }}';