secure_scores
Creates, updates, deletes, gets or lists a secure_scores
resource.
Overview
Name | secure_scores |
Type | Resource |
Id | azure.security.secure_scores |
Fields
- vw_secure_scores
- secure_scores
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
display_name | text | field from the properties object |
score | text | field from the properties object |
secureScoreName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type |
weight | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties | object | Describes properties of a calculated secure score. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | secureScoreName, subscriptionId | Get secure score for a specific Microsoft Defender for Cloud initiative within your current scope. For the ASC Default initiative, use 'ascScore'. |
list | SELECT | subscriptionId | List secure scores for all your Microsoft Defender for Cloud initiatives within your current scope. |
SELECT
examples
List secure scores for all your Microsoft Defender for Cloud initiatives within your current scope.
- vw_secure_scores
- secure_scores
SELECT
id,
name,
display_name,
score,
secureScoreName,
subscriptionId,
type,
weight
FROM azure.security.vw_secure_scores
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.security.secure_scores
WHERE subscriptionId = '{{ subscriptionId }}';