Skip to main content

whois

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

Overview

Namewhois
TypeResource
Idazure.security_insight.whois

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
createdstring (date-time)The timestamp at which this record was created.
domainstringThe domain for this whois record.
expiresstring (date-time)The timestamp at which this record will expire.
parsedWhoisobjectThe whois record for a given domain.
serverstringThe hostname of this registrar's whois server.
updatedstring (date-time)The timestamp at which this record was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_whois_by_domainselectresource_group_name, workspace_name, enrichment_type, subscription_idGet whois information for a single domain name.

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
enrichment_typestringEnrichment type. "main" Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the workspace. Required.

SELECT examples

Get whois information for a single domain name.

SELECT
created,
domain,
expires,
parsedWhois,
server,
updated
FROM azure.security_insight.whois
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND enrichment_type = '{{ enrichment_type }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;