Skip to main content

task_assignment_instances_reports

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

Overview

Nametask_assignment_instances_reports
TypeResource
Idazure.storage.task_assignment_instances_reports

Fields

The following fields are returned by SELECT queries:

OK -- storage task assignment's instances 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
listselectsubscriptionId, resourceGroupName, accountName, storageTaskAssignmentName$maxpagesize, $filterFetch 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.

NameDatatypeDescription
accountNamestringThe 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.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
storageTaskAssignmentNamestringThe 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.
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. See Constructing Filter Strings for details.
$maxpagesizeinteger (int32)Optional, specifies the maximum number of storage task assignment instances to be included in the list response.

SELECT examples

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 }}'
;