Skip to main content

changes_changes_by_subscriptions

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

Overview

Namechanges_changes_by_subscriptions
TypeResource
Idazure.change_analysis.changes_changes_by_subscriptions

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
listselectsubscriptionId, $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.
subscriptionIdstringThe ID of the target subscription.
$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.changes_changes_by_subscriptions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $startTime = '{{ $startTime }}' -- required
AND $endTime = '{{ $endTime }}' -- required
AND $skipToken = '{{ $skipToken }}'
;