eligible_child_resources
Creates, updates, deletes, gets or lists an eligible_child_resources resource.
Overview
| Name | eligible_child_resources |
| Type | Resource |
| Id | azure.authorization.eligible_child_resources |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | The resource scope Id. |
name | string | The resource name. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | scope | $filter | Get 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.
| Name | Datatype | Description |
|---|---|---|
scope | string | The fully qualified Azure Resource manager identifier of the resource. Required. |
$filter | string | The 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'. Default value is None. |
SELECT examples
- get
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 }}'
;