task_assignments_instances_reports
Creates, updates, deletes, gets or lists a task_assignments_instances_reports
resource.
Overview
Name | task_assignments_instances_reports |
Type | Resource |
Id | azure.storage.task_assignments_instances_reports |
Fields
The following fields are returned by SELECT
queries:
- list
OK -- storage task assignments' instances 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 | subscriptionId , resourceGroupName , accountName | $maxpagesize , $filter | Fetch the report summary of all the storage task assignments and instances in an account |
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 |
---|---|---|
accountName | string | The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
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. See Constructing Filter Strings for details. |
$maxpagesize | integer (int32) | Optional, specifies the maximum number of storage task assignment instances to be included in the list response. |
SELECT
examples
- list
Fetch the report summary of all the storage task assignments and instances in an account
SELECT
properties
FROM azure.storage.task_assignments_instances_reports
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND $maxpagesize = '{{ $maxpagesize }}'
AND $filter = '{{ $filter }}'
;