[[["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 2023-07-14 UTC."],[],[],null,["# firebase_functions.eventarc_fn module\n\nCloud functions to handle Eventarc events.\n\nFunctions\n---------\n\n| ### on_custom_event_published firebase_functions.eventarc_fn.on_custom_event_published(*\\*\\*kwargs* ) → Callable\\[\\[Callable\\[\\[[CloudEvent](/docs/reference/functions/2nd-gen/python/firebase_functions.core#firebase_functions.core.CloudEvent \"firebase_functions.core.CloudEvent\")\\], None\\]\\], Callable\\[\\[[CloudEvent](/docs/reference/functions/2nd-gen/python/firebase_functions.core#firebase_functions.core.CloudEvent \"firebase_functions.core.CloudEvent\")\\], None\\]\\] |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Creates a handler for events published on the default event eventarc channel. Example: ``` from firebase_functions import eventarc_fn @eventarc_fn.on_custom_event_published( event_type=\"firebase.extensions.storage-resize-images.v1.complete\", ) def onimageresize(event: eventarc_fn.CloudEvent) -\u003e None: pass ``` Parameters: : **\\*\\*kwargs** (as [firebase_functions.options.EventarcTriggerOptions](/docs/reference/functions/2nd-gen/python/firebase_functions.options#firebase_functions.options.EventarcTriggerOptions \"firebase_functions.options.EventarcTriggerOptions\")) -- Options. Return type: : typing.Callable \\[ \\[ [firebase_functions.core.CloudEvent](/docs/reference/functions/2nd-gen/python/firebase_functions.core#firebase_functions.core.CloudEvent \"firebase_functions.core.CloudEvent\") \\], None \\] A function that takes a CloudEvent and returns None. |"]]