snapshots
Creates, updates, deletes, gets or lists a snapshots
resource.
Overview
Name | snapshots |
Type | Resource |
Id | azure_extras.app_compliance_automation.snapshots |
Fields
- vw_snapshots
- snapshots
Name | Datatype | Description |
---|---|---|
compliance_results | text | field from the properties object |
created_at | text | field from the properties object |
provisioning_state | text | field from the properties object |
reportName | text | field from the properties object |
report_properties | text | field from the properties object |
report_system_data | text | field from the properties object |
snapshotName | text | field from the properties object |
snapshot_name | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Snapshot's properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | reportName, snapshotName | Get the AppComplianceAutomation snapshot and its properties. |
list | SELECT | reportName | Get the AppComplianceAutomation snapshot list. |
download | EXEC | reportName, snapshotName, data__downloadType | Download compliance needs from snapshot, like: Compliance Report, Resource List. |
SELECT
examples
Get the AppComplianceAutomation snapshot list.
- vw_snapshots
- snapshots
SELECT
compliance_results,
created_at,
provisioning_state,
reportName,
report_properties,
report_system_data,
snapshotName,
snapshot_name
FROM azure_extras.app_compliance_automation.vw_snapshots
WHERE reportName = '{{ reportName }}';
SELECT
properties
FROM azure_extras.app_compliance_automation.snapshots
WHERE reportName = '{{ reportName }}';