Skip to main content

services_current_risky_ip_download_reports

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

Overview

Nameservices_current_risky_ip_download_reports
TypeResource
Idazure.ad_hybrid_health_service.services_current_risky_ip_download_reports

Fields

The following fields are returned by SELECT queries:

The URI of the Risky IP report that was requested.

NameDatatypeDescription
blobCreateDateTimestring (date-time)Time at which the new Risky IP report was requested.
jobCompletionTimestring (date-time)Time at which the blob creation job for the new Risky IP report was completed.
resultSasUristringThe blob uri for the report.
serviceIdstringThe service id for whom the report belongs to.
statusstringStatus of the Risky IP report generation.
tenantIdstringThe tenant id for whom the report belongs to.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceNameInitiate the generation of a new Risky IP report. Returns the URI for the new one.

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
serviceNamestringThe name of the service.

SELECT examples

Initiate the generation of a new Risky IP report. Returns the URI for the new one.

SELECT
blobCreateDateTime,
jobCompletionTime,
resultSasUri,
serviceId,
status,
tenantId
FROM azure.ad_hybrid_health_service.services_current_risky_ip_download_reports
WHERE serviceName = '{{ serviceName }}' -- required
;