Skip to main content

regulatory_compliance_controls

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

Overview

Nameregulatory_compliance_controls
TypeResource
Idazure.security.regulatory_compliance_controls

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
propertiesobjectRegulatory compliance control data
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
getselectsubscriptionId, regulatoryComplianceStandardName, regulatoryComplianceControlNameapi-versionSelected regulatory compliance control details and state
listselectsubscriptionId, regulatoryComplianceStandardNameapi-version, $filterAll supported regulatory compliance controls details and state for selected standard

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
regulatoryComplianceControlNamestringName of the regulatory compliance control object
regulatoryComplianceStandardNamestringName of the regulatory compliance standard object
subscriptionIdstringAzure subscription ID
$filterstringOData filter. Optional.
api-versionstringAPI version for the operation

SELECT examples

Selected regulatory compliance control details and state

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