When the specified storage bucket is a 1st gen function uploard url bucket,
this field should be set as the generated upload url for 1st gen
deployment.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-09 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eStorageSource\u003c/code\u003e class is part of the Google Cloud Functions v2 API, with the latest version being 1.7.0, and it is used to represent the location of source code in a Google Cloud Storage archive file.\u003c/p\u003e\n"],["\u003cp\u003eThis class implements multiple interfaces, including \u003ccode\u003eIMessage\u003c/code\u003e, \u003ccode\u003eIEquatable\u003c/code\u003e, \u003ccode\u003eIDeepCloneable\u003c/code\u003e, and \u003ccode\u003eIBufferMessage\u003c/code\u003e, providing capabilities for message handling, equality comparison, deep cloning, and buffer manipulation.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eStorageSource\u003c/code\u003e has properties like \u003ccode\u003eBucket\u003c/code\u003e, \u003ccode\u003eGeneration\u003c/code\u003e, \u003ccode\u003eObject\u003c/code\u003e, and \u003ccode\u003eSourceUploadUrl\u003c/code\u003e to specify the Google Cloud Storage location and details of the archive file containing the source code.\u003c/p\u003e\n"],["\u003cp\u003eThe Object property of the \u003ccode\u003eStorageSource\u003c/code\u003e class represents a gzipped archive file in Google Cloud Storage containing the build source, and the latest generation of an object will be used if the Generation property is not specified.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eStorageSource\u003c/code\u003e class can be constructed using either a default constructor or a constructor that takes another \u003ccode\u003eStorageSource\u003c/code\u003e object as a parameter for copying data.\u003c/p\u003e\n"]]],[],null,["# Cloud Functions v2 API - Class StorageSource (1.7.0)\n\nVersion latestkeyboard_arrow_down\n\n- [1.7.0 (latest)](/dotnet/docs/reference/Google.Cloud.Functions.V2/latest/Google.Cloud.Functions.V2.StorageSource)\n- [1.6.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.6.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.5.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.5.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.4.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.4.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.3.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.3.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.2.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.2.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.1.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.1.0/Google.Cloud.Functions.V2.StorageSource)\n- [1.0.0](/dotnet/docs/reference/Google.Cloud.Functions.V2/1.0.0/Google.Cloud.Functions.V2.StorageSource) \n\n public sealed class StorageSource : IMessage\u003cStorageSource\u003e, IEquatable\u003cStorageSource\u003e, IDeepCloneable\u003cStorageSource\u003e, IBufferMessage, IMessage\n\nReference documentation and code samples for the Cloud Functions v2 API class StorageSource.\n\nLocation of the source in an archive file in Google Cloud Storage. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e StorageSource \n\nImplements\n----------\n\n[IMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IMessage-1.html)[StorageSource](/dotnet/docs/reference/Google.Cloud.Functions.V2/latest/Google.Cloud.Functions.V2.StorageSource), [IEquatable](https://learn.microsoft.com/dotnet/api/system.iequatable-1)[StorageSource](/dotnet/docs/reference/Google.Cloud.Functions.V2/latest/Google.Cloud.Functions.V2.StorageSource), [IDeepCloneable](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IDeepCloneable-1.html)[StorageSource](/dotnet/docs/reference/Google.Cloud.Functions.V2/latest/Google.Cloud.Functions.V2.StorageSource), [IBufferMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IBufferMessage.html), [IMessage](https://cloud.google.com/dotnet/docs/reference/Google.Protobuf/latest/Google.Protobuf.IMessage.html) \n\nInherited Members\n-----------------\n\n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Google.Cloud.Functions.V2](/dotnet/docs/reference/Google.Cloud.Functions.V2/latest/Google.Cloud.Functions.V2)\n\nAssembly\n--------\n\nGoogle.Cloud.Functions.V2.dll\n\nConstructors\n------------\n\n### StorageSource()\n\n public StorageSource()\n\n### StorageSource(StorageSource)\n\n public StorageSource(StorageSource other)\n\nProperties\n----------\n\n### Bucket\n\n public string Bucket { get; set; }\n\nGoogle Cloud Storage bucket containing the source (see\n[Bucket Name\nRequirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)).\n\n### Generation\n\n public long Generation { get; set; }\n\nGoogle Cloud Storage generation for the object. If the generation is\nomitted, the latest generation will be used.\n\n### Object\n\n public string Object { get; set; }\n\nGoogle Cloud Storage object containing the source.\n\nThis object must be a gzipped archive file (`.tar.gz`) containing source to\nbuild.\n\n### SourceUploadUrl\n\n public string SourceUploadUrl { get; set; }\n\nWhen the specified storage bucket is a 1st gen function uploard url bucket,\nthis field should be set as the generated upload url for 1st gen\ndeployment."]]