health_reports
Creates, updates, deletes, gets or lists a health_reports
resource.
Overview
Name | health_reports |
Type | Resource |
Id | azure.security.health_reports |
Fields
- vw_health_reports
- health_reports
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
affected_defenders_plans | text | field from the properties object |
affected_defenders_sub_plans | text | field from the properties object |
environment_details | text | field from the properties object |
healthReportName | text | field from the properties object |
health_data_classification | text | field from the properties object |
issues | text | field from the properties object |
report_additional_data | text | field from the properties object |
resourceId | text | field from the properties object |
resource_details | text | field from the properties object |
scope | text | field from the properties object |
status | text | field from the properties object |
type | text | Resource type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties | object | Describes properties of the health report |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | healthReportName, resourceId | Get health report of resource |
list | SELECT | scope | Get a list of all health reports inside a scope. Valid scopes are: subscription (format: 'subscriptions/{subscriptionId}'), or security connector (format: 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/securityConnectors/{securityConnectorName})' |
SELECT
examples
Get a list of all health reports inside a scope. Valid scopes are: subscription (format: 'subscriptions/{subscriptionId}'), or security connector (format: 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/securityConnectors/{securityConnectorName})'
- vw_health_reports
- health_reports
SELECT
id,
name,
affected_defenders_plans,
affected_defenders_sub_plans,
environment_details,
healthReportName,
health_data_classification,
issues,
report_additional_data,
resourceId,
resource_details,
scope,
status,
type
FROM azure.security.vw_health_reports
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.security.health_reports
WHERE scope = '{{ scope }}';