Skip to main content

secure_score_control_definitions

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

Overview

Namesecure_score_control_definitions
TypeResource
Idazure.security.secure_score_control_definitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectSecurity Control Definition Properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_subscriptionselectsubscriptionIdapi-versionFor a specified subscription, list the available security controls, their assessments, and the max score
listselectapi-versionList the available security controls, their assessments, and the max score

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
subscriptionIdstringAzure subscription ID
api-versionstringAPI version for the operation

SELECT examples

For a specified subscription, list the available security controls, their assessments, and the max score

SELECT
id,
name,
properties,
systemData,
type
FROM azure.security.secure_score_control_definitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;