global_rulestack_change_logs
Creates, updates, deletes, gets or lists a global_rulestack_change_logs resource.
Overview
| Name | global_rulestack_change_logs |
| Type | Resource |
| Id | azure_isv.paloalto.global_rulestack_change_logs |
Fields
The following fields are returned by SELECT queries:
- get
The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
changes | array | list of changes (x-cadl-name: string[]) |
lastCommitted | string (date-time) | lastCommitted timestamp |
lastModified | string (date-time) | lastModified timestamp |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | globalRulestackName | Get changelog |
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 |
|---|---|---|
globalRulestackName | string | GlobalRulestack resource name |
SELECT examples
- get
Get changelog
SELECT
changes,
lastCommitted,
lastModified
FROM azure_isv.paloalto.global_rulestack_change_logs
WHERE globalRulestackName = '{{ globalRulestackName }}' -- required
;