storage_tasks_reports
Creates, updates, deletes, gets or lists a storage_tasks_reports
resource.
Overview
Name | storage_tasks_reports |
Type | Resource |
Id | azure.storageactions.storage_tasks_reports |
Fields
The following fields are returned by SELECT
queries:
- list
OK -- Storage tasks run report summary retrieved and returned successfully.
Name | Datatype | Description |
---|---|---|
properties | object | Storage task execution report for a run instance. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , storageTaskName , subscriptionId | $maxpagesize , $filter | Fetch 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
storageTaskName | string | The 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. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$filter | string | Optional. When specified, it can be used to query using reporting properties. |
$maxpagesize | integer (int32) | Optional, specifies the maximum number of Storage Task Assignment Resource IDs to be included in the list response. |
SELECT
examples
- list
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 }}'
;