Skip to main content

move_collections_move_collections_by_resource_groups

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

Overview

Namemove_collections_move_collections_by_resource_groups
TypeResource
Idazure.resource_mover.move_collections_move_collections_by_resource_groups

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
listselectsubscriptionId, resourceGroupNameapi-versionGet all the Move Collections in the resource group.

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

SELECT examples

Get all the Move Collections in the resource group.

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