scoping_configurations
Creates, updates, deletes, gets or lists a scoping_configurations
resource.
Overview
Name | scoping_configurations |
Type | Resource |
Id | azure_extras.app_compliance_automation.scoping_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | ScopingConfiguration property. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | ScopingConfiguration property. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | reportName , scopingConfigurationName | Get the AppComplianceAutomation scoping configuration of the specific report. | |
list | select | reportName | Returns a list format of the singleton scopingConfiguration for a specified report. | |
create_or_update | insert | reportName , scopingConfigurationName , data__properties | Get the AppComplianceAutomation scoping configuration of the specific report. | |
delete | delete | reportName , scopingConfigurationName | Clean 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.
Name | Datatype | Description |
---|---|---|
reportName | string | Report Name. |
scopingConfigurationName | string | The scoping configuration of the specific report. |
SELECT
examples
- get
- list
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
;
Returns a list format of the singleton scopingConfiguration for a specified report.
SELECT
properties
FROM azure_extras.app_compliance_automation.scoping_configurations
WHERE reportName = '{{ reportName }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: scoping_configurations
props:
- name: reportName
value: string
description: Required parameter for the scoping_configurations resource.
- name: scopingConfigurationName
value: string
description: Required parameter for the scoping_configurations resource.
- name: properties
value: object
description: |
ScopingConfiguration property.
DELETE
examples
- delete
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
;