Skip to main content

local_rulestacks_change_logs

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

Overview

Namelocal_rulestacks_change_logs
TypeResource
Idazure_isv.paloalto.local_rulestacks_change_logs

Fields

The following fields are returned by SELECT queries:

The request has succeeded.

NameDatatypeDescription
changesarraylist of changes (x-cadl-name: string[])
lastCommittedstring (date-time)lastCommitted timestamp
lastModifiedstring (date-time)lastModified timestamp

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, localRulestackNameGet 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.

NameDatatypeDescription
localRulestackNamestringLocalRulestack resource name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

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
;