Skip to main content

eligible_child_resources

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

Overview

Nameeligible_child_resources
TypeResource
Idazure.authorization.eligible_child_resources

Fields

The following fields are returned by SELECT queries:

OK - Returns information about the role management policy.

NameDatatypeDescription
idstringThe resource scope Id.
namestringThe resource name.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope$filterGet the child resources of a resource on which user has eligible access

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
scopestringThe scope of the role management policy.
$filterstringThe filter to apply on the operation. Use $filter=resourceType+eq+'Subscription' to filter on only resource of type = 'Subscription'. Use $filter=resourceType+eq+'subscription'+or+resourceType+eq+'resourcegroup' to filter on resource of type = 'Subscription' or 'ResourceGroup'

SELECT examples

Get the child resources of a resource on which user has eligible access

SELECT
id,
name,
type
FROM azure.authorization.eligible_child_resources
WHERE scope = '{{ scope }}' -- required
AND $filter = '{{ $filter }}'
;