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
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 standard 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, regulatoryComplianceStandardNameapi-versionSupported regulatory compliance details state for selected standard
listselectsubscriptionIdapi-version, $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
regulatoryComplianceStandardNamestringName of the regulatory compliance standard object
subscriptionIdstringAzure subscription ID
$filterstringOData filter. Optional.
api-versionstringAPI version for the operation

SELECT examples

Supported regulatory compliance details state for selected standard

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