Skip to main content

storage_task_assignment

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

Overview

Namestorage_task_assignment
TypeResource
Idazure.storage_actions.storage_task_assignment

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID of the Storage Task Assignment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, storage_task_name, subscription_id$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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
storage_task_namestringThe 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. Required.
subscription_idstring
$maxpagesizeinteger

SELECT examples

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

SELECT
id
FROM azure.storage_actions.storage_task_assignment
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND storage_task_name = '{{ storage_task_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $maxpagesize = '{{ $maxpagesize }}'
;