Gets the Eventarc service for the default app or a given app.getEventarc() can be called with no arguments to access the default app's Eventarc service or as getEventarc(app) to access the Eventarc service associated with specific app.
Gets the Eventarc service for the default app or a given app.
getEventarc() can be called with no arguments to access the default app's Eventarc service or as getEventarc(app) to access the Eventarc service associated with specific app.
[[["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 2024-04-16 UTC."],[],[],null,["Firebase Eventarc.\n\nFunctions\n\nClasses\n\nInterfaces\n\nType Aliases\n\ngetEventarc(app)\n\nGets the [Eventarc](./firebase-admin.eventarc.eventarc.md#eventarc_class) service for the default app or a given app.\n\n`getEventarc()` can be called with no arguments to access the default app's `Eventarc` service or as `getEventarc(app)` to access the `Eventarc` service associated with specific app.\n\n**Signature:** \n\n export declare function getEventarc(app?: App): Eventarc;\n\nParameters\n\n**Returns:**\n\n[Eventarc](./firebase-admin.eventarc.eventarc.md#eventarc_class)\n\nThe default `Eventarc` service if no app is provided or the `Eventarc` service associated with the provided app.\n\nExample 1 \n\n // Get the Eventarc service for the default app\n const defaultEventarc = getEventarc();\n\nExample 2 \n\n // Get the Eventarc service for a given app\n const otherEventarc = getEventarc(otherApp);\n\nCloudEventVersion\n\nA CloudEvent version.\n\n**Signature:** \n\n export type CloudEventVersion = '1.0';"]]