local_rulestacks_change_logs
Creates, updates, deletes, gets or lists a local_rulestacks_change_logs resource.
Overview
| Name | local_rulestacks_change_logs |
| Type | Resource |
| Id | azure_isv.paloalto.local_rulestacks_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 | subscriptionId, resourceGroupName, localRulestackName | 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 |
|---|---|---|
localRulestackName | string | LocalRulestack resource name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- get
Get changelog
SELECT
changes,
lastCommitted,
lastModified
FROM azure_isv.paloalto.local_rulestacks_change_logs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND localRulestackName = '{{ localRulestackName }}' -- required
;