regulatory_compliance_controls
Creates, updates, deletes, gets or lists a regulatory_compliance_controls
resource.
Overview
Name | regulatory_compliance_controls |
Type | Resource |
Id | azure.security.regulatory_compliance_controls |
Fields
The following fields are returned by SELECT
queries:
- get
- 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 | Regulatory compliance control data |
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 | Regulatory compliance control data |
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 |
---|---|---|---|---|
get | select | subscriptionId , regulatoryComplianceStandardName , regulatoryComplianceControlName | api-version | Selected regulatory compliance control details and state |
list | select | subscriptionId , regulatoryComplianceStandardName | api-version , $filter | All 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.
Name | Datatype | Description |
---|---|---|
regulatoryComplianceControlName | string | Name of the regulatory compliance control object |
regulatoryComplianceStandardName | string | Name of the regulatory compliance standard object |
subscriptionId | string | Azure subscription ID |
$filter | string | OData filter. Optional. |
api-version | string | API version for the operation |
SELECT
examples
- get
- list
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 }}'
;
All supported regulatory compliance controls details and state for selected standard
SELECT
id,
name,
properties,
systemData,
type
FROM azure.security.regulatory_compliance_controls
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND regulatoryComplianceStandardName = '{{ regulatoryComplianceStandardName }}' -- required
AND api-version = '{{ api-version }}'
AND $filter = '{{ $filter }}'
;