Package version:

Managed service identity (system assigned and/or user assigned identities)

interface ManagedServiceIdentity {
    principalId?: string;
    tenantId?: string;
    type: string;
    userAssignedIdentities?: any;
}

Properties

principalId?: string

The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.

tenantId?: string

The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.

type: string

The type of managed identity assigned to this resource.

userAssignedIdentities?: any

The identities assigned to this resource by the user.