secure_score_control_definitions
Creates, updates, deletes, gets or lists a secure_score_control_definitions
resource.
Overview
Name | secure_score_control_definitions |
Type | Resource |
Id | azure.security.secure_score_control_definitions |
Fields
The following fields are returned by SELECT
queries:
- list_by_subscription
- list
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Security Control Definition Properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Security Control Definition Properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_subscription | select | subscriptionId | api-version | For a specified subscription, list the available security controls, their assessments, and the max score |
list | select | api-version | List 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | Azure subscription ID |
api-version | string | API version for the operation |
SELECT
examples
- list_by_subscription
- list
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 }}'
;
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 api-version = '{{ api-version }}'
;