IdentityInfo Class
The identity information for the resource.
Constructor
IdentityInfo(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
type
|
str or
IdentityType
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. Known values are: "None", "SystemAssigned", "UserAssigned", and "SystemAssigned, UserAssigned". |
|
principal_id
|
The principal ID of resource identity. |
|
tenant_id
|
The tenant ID of resource. |
|
user_assigned_identities
|
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage. |
Attributes
principal_id
The principal ID of resource identity.
principal_id: str | None
tenant_id
The tenant ID of resource.
tenant_id: str | None
type
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. Known values are: "None", "SystemAssigned", "UserAssigned", and "SystemAssigned, UserAssigned".
type: str | _models.IdentityType | None
user_assigned_identities
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage.
user_assigned_identities: dict[str, '_models.UserIdentityProperties'] | None