Skip to main content

task_assignments_instances_reports

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

Overview

Nametask_assignments_instances_reports
TypeResource
Idazure.storage.task_assignments_instances_reports

Fields

The following fields are returned by SELECT queries:

OK -- storage task assignments' 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$maxpagesize, $filterFetch 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.

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