task_assignment_instances_reports
Creates, updates, deletes, gets or lists a task_assignment_instances_reports
resource.
Overview
Name | task_assignment_instances_reports |
Type | Resource |
Id | azure.storage.task_assignment_instances_reports |
Fields
The following fields are returned by SELECT
queries:
- list
OK -- storage task assignment's 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 , storageTaskAssignmentName | $maxpagesize , $filter | Fetch the report summary of a single storage task assignment's instances |
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. |
storageTaskAssignmentName | string | The name of the storage task assignment within the specified resource group. Storage task assignment names must be between 3 and 24 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. 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 a single storage task assignment's instances
SELECT
properties
FROM azure.storage.task_assignment_instances_reports
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND storageTaskAssignmentName = '{{ storageTaskAssignmentName }}' -- required
AND $maxpagesize = '{{ $maxpagesize }}'
AND $filter = '{{ $filter }}'
;