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

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectname, subscriptionIdDescription 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.

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 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
;