Skip to main content

unresolved_dependencies

Creates, updates, deletes, gets or lists an unresolved_dependencies resource.

Overview

Nameunresolved_dependencies
TypeResource
Idazure.resource_mover.unresolved_dependencies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the arm id of the dependency.
countinteger (int32)Gets or sets the count.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, moveCollectionNamedependencyLevel, $orderby, api-version, $filterGets a list of unresolved dependencies.

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
moveCollectionNamestringThe Move Collection Name.
resourceGroupNamestringThe Resource Group Name.
subscriptionIdstringThe Subscription ID.
$filterstringThe filter to apply on the operation. For example, $apply=filter(count eq 2).
$orderbystringOData order by query option. For example, you can use $orderby=Count desc.
api-versionstringClient Api Version.
dependencyLevelstringDefines the dependency level.

SELECT examples

Gets a list of unresolved dependencies.

SELECT
id,
count
FROM azure.resource_mover.unresolved_dependencies
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND moveCollectionName = '{{ moveCollectionName }}' -- required
AND dependencyLevel = '{{ dependencyLevel }}'
AND $orderby = '{{ $orderby }}'
AND api-version = '{{ api-version }}'
AND $filter = '{{ $filter }}'
;