Skip to main content

storage_task_assignments

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

Overview

Namestorage_task_assignments
TypeResource
Idazure.storageactions.storage_task_assignments

Fields

The following fields are returned by SELECT queries:

OK -- List of Storage Task Assignment Resource IDs retrieved and returned successfully.

NameDatatypeDescription
idstring (arm-id)Resource ID of the Storage Task Assignment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, storageTaskName, subscriptionId$maxpagesizeLists Resource IDs of the Storage Task Assignments associated with this Storage Task.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
storageTaskNamestringThe 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.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$maxpagesizeinteger (int32)Optional, specifies the maximum number of Storage Task Assignment Resource IDs to be included in the list response.

SELECT examples

Lists Resource IDs of the Storage Task Assignments associated with this Storage Task.

SELECT
id
FROM azure.storageactions.storage_task_assignments
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND storageTaskName = '{{ storageTaskName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $maxpagesize = '{{ $maxpagesize }}'
;