services_all_risky_ip_download_reports
Creates, updates, deletes, gets or lists a services_all_risky_ip_download_reports
resource.
Overview
Name | services_all_risky_ip_download_reports |
Type | Resource |
Id | azure.ad_hybrid_health_service.services_all_risky_ip_download_reports |
Fields
The following fields are returned by SELECT
queries:
- list
Risky IP report URIs for the last 7 days.
Name | Datatype | Description |
---|---|---|
blobCreateDateTime | string (date-time) | Time at which the new Risky IP report was requested. |
jobCompletionTime | string (date-time) | Time at which the blob creation job for the new Risky IP report was completed. |
resultSasUri | string | The blob uri for the report. |
serviceId | string | The service id for whom the report belongs to. |
status | string | Status of the Risky IP report generation. |
tenantId | string | The tenant id for whom the report belongs to. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName | Gets all Risky IP report URIs for the last 7 days. |
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 |
---|---|---|
serviceName | string | The name of the service. |
SELECT
examples
- list
Gets all Risky IP report URIs for the last 7 days.
SELECT
blobCreateDateTime,
jobCompletionTime,
resultSasUri,
serviceId,
status,
tenantId
FROM azure.ad_hybrid_health_service.services_all_risky_ip_download_reports
WHERE serviceName = '{{ serviceName }}' -- required
;