[[["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-04-24 UTC."],[],[],null,["# storage namespace\n\nFunctions\n---------\n\n| Function | Description |\n|-----------------------------------------------------------------|----------------------------------------------------------------------------------|\n| [bucket(bucket)](./firebase-functions.storage.md#storagebucket) | Registers a Cloud Function scoped to a specific storage bucket. |\n| [object()](./firebase-functions.storage.md#storageobject) | Registers a Cloud Function scoped to the default storage bucket for the project. |\n\nClasses\n-------\n\n| Class | Description |\n|-------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|\n| [BucketBuilder](./firebase-functions.storage.bucketbuilder.md#storagebucketbuilder_class) | The Google Cloud Storage bucket builder interface.Access via `functions.storage.bucket()`. |\n| [ObjectBuilder](./firebase-functions.storage.objectbuilder.md#storageobjectbuilder_class) | The Google Cloud Storage object builder interface.Access via `functions.storage.object()`. |\n\nInterfaces\n----------\n\n| Interface | Description |\n|--------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|\n| [ObjectMetadata](./firebase-functions.storage.objectmetadata.md#storageobjectmetadata_interface) | Interface representing a Google Google Cloud Storage object metadata object. |\n\nstorage.bucket()\n----------------\n\nRegisters a Cloud Function scoped to a specific storage bucket.\n\n**Signature:** \n\n export declare function bucket(bucket?: string): BucketBuilder;\n\n### Parameters\n\n| Parameter | Type | Description |\n|-----------|--------|------------------------------------------------------------|\n| bucket | string | Name of the bucket to which this Cloud Function is scoped. |\n\n**Returns:**\n\n[BucketBuilder](./firebase-functions.storage.bucketbuilder.md#storagebucketbuilder_class)\n\nStorage bucket builder interface.\n\nstorage.object()\n----------------\n\nRegisters a Cloud Function scoped to the default storage bucket for the project.\n\n**Signature:** \n\n export declare function object(): ObjectBuilder;\n\n**Returns:**\n\n[ObjectBuilder](./firebase-functions.storage.objectbuilder.md#storageobjectbuilder_class)\n\nStorage object builder interface."]]