Skip to main content

storage_tasks_reports

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

Overview

Namestorage_tasks_reports
TypeResource
Idazure.storageactions.storage_tasks_reports

Fields

The following fields are returned by SELECT queries:

OK -- Storage tasks run report summary retrieved and returned successfully.

NameDatatypeDescription
propertiesobjectStorage task execution report for a run instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, storageTaskName, subscriptionId$maxpagesize, $filterFetch the storage tasks run report summary for each assignment.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
storageTaskNamestringThe name of the storage task within the specified resource group. Storage task names must be between 3 and 18 characters in length and use numbers and lower-case letters only.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$filterstringOptional. When specified, it can be used to query using reporting properties.
$maxpagesizeinteger (int32)Optional, specifies the maximum number of Storage Task Assignment Resource IDs to be included in the list response.

SELECT examples

Fetch the storage tasks run report summary for each assignment.

SELECT
properties
FROM azure.storageactions.storage_tasks_reports
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND storageTaskName = '{{ storageTaskName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $maxpagesize = '{{ $maxpagesize }}'
AND $filter = '{{ $filter }}'
;