Skip to main content

top_level_domains_agreements

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

Overview

Nametop_level_domains_agreements
TypeResource
Idazure.app_service.top_level_domains_agreements

Fields

NameDatatypeDescription
agreementKeystringUnique identifier for the agreement.
contentstringAgreement details.
titlestringAgreement title.
urlstringURL where a copy of the agreement details is hosted.

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, subscriptionIdDescription 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 }}';