Skip to main content

scoping_configurations

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

Overview

Namescoping_configurations
TypeResource
Idazure_extras.app_compliance_automation.scoping_configurations

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectScopingConfiguration property.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectreportName, scopingConfigurationNameGet the AppComplianceAutomation scoping configuration of the specific report.
listselectreportNameReturns a list format of the singleton scopingConfiguration for a specified report.
create_or_updateinsertreportName, scopingConfigurationName, data__propertiesGet the AppComplianceAutomation scoping configuration of the specific report.
deletedeletereportName, scopingConfigurationNameClean the AppComplianceAutomation scoping configuration of the specific report.

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
reportNamestringReport Name.
scopingConfigurationNamestringThe scoping configuration of the specific report.

SELECT examples

Get the AppComplianceAutomation scoping configuration of the specific report.

SELECT
properties
FROM azure_extras.app_compliance_automation.scoping_configurations
WHERE reportName = '{{ reportName }}' -- required
AND scopingConfigurationName = '{{ scopingConfigurationName }}' -- required
;

INSERT examples

Get the AppComplianceAutomation scoping configuration of the specific report.

INSERT INTO azure_extras.app_compliance_automation.scoping_configurations (
data__properties,
reportName,
scopingConfigurationName
)
SELECT
'{{ properties }}' /* required */,
'{{ reportName }}',
'{{ scopingConfigurationName }}'
RETURNING
properties
;

DELETE examples

Clean the AppComplianceAutomation scoping configuration of the specific report.

DELETE FROM azure_extras.app_compliance_automation.scoping_configurations
WHERE reportName = '{{ reportName }}' --required
AND scopingConfigurationName = '{{ scopingConfigurationName }}' --required
;