whois
Creates, updates, deletes, gets or lists a whois resource.
Overview
| Name | whois |
| Type | Resource |
| Id | azure.security_insight.whois |
Fields
The following fields are returned by SELECT queries:
- list_whois_by_domain
| Name | Datatype | Description |
|---|---|---|
created | string (date-time) | The timestamp at which this record was created. |
domain | string | The domain for this whois record. |
expires | string (date-time) | The timestamp at which this record will expire. |
parsedWhois | object | The whois record for a given domain. |
server | string | The hostname of this registrar's whois server. |
updated | string (date-time) | The timestamp at which this record was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_whois_by_domain | select | resource_group_name, workspace_name, enrichment_type, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
enrichment_type | string | Enrichment type. "main" Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The name of the workspace. Required. |
SELECT examples
- list_whois_by_domain
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
;