Skip to main content

regulatory_compliance_standards

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

Overview

Nameregulatory_compliance_standards
TypeResource
Idazure.security.regulatory_compliance_standards

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
failedControlsintegerThe number of supported regulatory compliance controls of the given standard with a failed state.
passedControlsintegerThe number of supported regulatory compliance controls of the given standard with a passed state.
skippedControlsintegerThe number of supported regulatory compliance controls of the given standard with a skipped state.
statestringAggregative state based on the standard's supported controls states. Known values are: "Passed", "Failed", "Skipped", "Unsupported", "On", and "Off". (Passed, Failed, Skipped, Unsupported, On, Off)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
unsupportedControlsintegerThe number of regulatory compliance controls of the given standard which are unsupported by automated assessments.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectregulatory_compliance_standard_name, subscription_idSupported regulatory compliance details state for selected standard.
listselectsubscription_id$filterSupported regulatory compliance standards details and state.

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
regulatory_compliance_standard_namestringName of the regulatory compliance standard object. Required.
subscription_idstring
$filterstringOData filter. Optional. Default value is None.

SELECT examples

Supported regulatory compliance details state for selected standard.

SELECT
id,
name,
failedControls,
passedControls,
skippedControls,
state,
systemData,
type,
unsupportedControls
FROM azure.security.regulatory_compliance_standards
WHERE regulatory_compliance_standard_name = '{{ regulatory_compliance_standard_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;