Skip to main content

resource_changes

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

Overview

Nameresource_changes
TypeResource
Idazure.change_analysis.resource_changes

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
propertiesobjectThe properties of a change.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceId, $startTime, $endTime$skipToken

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
$endTimestring (date-time)Specifies the end time of the changes request.
$startTimestring (date-time)Specifies the start time of the changes request.
resourceIdstringThe identifier of the resource.
$skipTokenstringA skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls.

SELECT examples

The request was successful; the request was well-formed and received properly.

SELECT
properties
FROM azure.change_analysis.resource_changes
WHERE resourceId = '{{ resourceId }}' -- required
AND $startTime = '{{ $startTime }}' -- required
AND $endTime = '{{ $endTime }}' -- required
AND $skipToken = '{{ $skipToken }}'
;