Skip to main content

system_assigned_identities

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

Overview

Namesystem_assigned_identities
TypeResource
Idazure.managed_identity.system_assigned_identities

Fields

The following fields are returned by SELECT queries:

OK. The systemAssignedIdentity was retrieved and returned successfully.

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectThe properties associated with the identity. (title: System Assigned Identity properties.)
tagsobjectResource tags

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_scopeselectscopeGets the systemAssignedIdentity available under the specified RP scope.

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 resource provider scope of the resource. Parent resource being extended by Managed Identities.

SELECT examples

Gets the systemAssignedIdentity available under the specified RP scope.

SELECT
location,
properties,
tags
FROM azure.managed_identity.system_assigned_identities
WHERE scope = '{{ scope }}' -- required
;