Evaluate the auth policy with a customized JWT auth token. Should follow the Firebase Auth token format. https://firebase.google.com/docs/data-connect/cel-reference#auth-token-contents
Both authClaims and unauthenticated are mutually exclusive fields and should not be both set.
ImpersonateAuthenticated.authClaims
Evaluate the auth policy with a customized JWT auth token. Should follow the Firebase Auth token format. https://firebase.google.com/docs/data-connect/cel-reference#auth-token-contents
Signature:
authClaims:AuthClaims;
Example
A verified user may have the following authClaims:
{"sub":"uid","email_verified":true}
ImpersonateAuthenticated.unauthenticated
Both authClaims and unauthenticated are mutually exclusive fields and should not be both set.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[],[],null,["# ImpersonateAuthenticated interface\n\nInterface representing the impersonation of an authenticated user.\n\n**Signature:** \n\n export interface ImpersonateAuthenticated \n\nProperties\n----------\n\n| Property | Type | Description |\n|----------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [authClaims](./firebase-admin.data-connect.impersonateauthenticated.md#impersonateauthenticatedauthclaims) | [AuthClaims](./firebase-admin.data-connect.md#authclaims) | Evaluate the auth policy with a customized JWT auth token. Should follow the Firebase Auth token format. https://firebase.google.com/docs/data-connect/cel-reference#auth-token-contents |\n| [unauthenticated](./firebase-admin.data-connect.impersonateauthenticated.md#impersonateauthenticatedunauthenticated) | never | Both `authClaims` and `unauthenticated` are mutually exclusive fields and should not be both set. |\n\nImpersonateAuthenticated.authClaims\n-----------------------------------\n\nEvaluate the auth policy with a customized JWT auth token. Should follow the Firebase Auth token format. https://firebase.google.com/docs/data-connect/cel-reference#auth-token-contents\n\n**Signature:** \n\n authClaims: AuthClaims;\n\n### Example\n\nA verified user may have the following `authClaims`: \n\n { \"sub\": \"uid\", \"email_verified\": true }\n\nImpersonateAuthenticated.unauthenticated\n----------------------------------------\n\nBoth `authClaims` and `unauthenticated` are mutually exclusive fields and should not be both set.\n\n**Signature:** \n\n unauthenticated?: never;"]]