Package version:

Describes how identity is verified

interface Identity {
    principalId?: string;
    tenantId?: string;
    type?: string;
    userAssignedIdentities?: {
        [propertyName: string]: Record<string, unknown>;
    };
}

Properties

principalId?: string

The principalId of the identity. NOTE: This property will not be serialized. It can only be populated by the server.

tenantId?: string

The tenantId of the identity. NOTE: This property will not be serialized. It can only be populated by the server.

type?: string

The type of identity, can be SystemAssigned or UserAssigned.

userAssignedIdentities?: {
    [propertyName: string]: Record<string, unknown>;
}

The user assigned identities associated with the streaming job resource.

Type declaration

  • [propertyName: string]: Record<string, unknown>

Generated using TypeDoc