Skip to main content

move_collections_move_collections_by_subscriptions

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

Overview

Namemove_collections_move_collections_by_subscriptions
TypeResource
Idazure.resource_mover.move_collections_move_collections_by_subscriptions

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
idstringFully qualified resource Id for the resource.
namestringThe name of the resource
etagstringThe etag of the resource.
identityobjectDefines the MSI properties of the Move Collection.
locationstringThe geo-location where the resource lives.
propertiesobjectDefines the move collection properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdapi-versionGet all the Move Collections in the subscription.

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
subscriptionIdstringThe Subscription ID.
api-versionstringClient Api Version.

SELECT examples

Get all the Move Collections in the subscription.

SELECT
id,
name,
etag,
identity,
location,
properties,
systemData,
tags,
type
FROM azure.resource_mover.move_collections_move_collections_by_subscriptions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;