Class StorageSource
Location of the source in an archive file in Google Cloud Storage.
Implements
Inherited Members
Namespace: Google.Apis.CloudFunctions.v2beta.Data
Assembly: Google.Apis.CloudFunctions.v2beta.dll
Syntax
public class StorageSource : IDirectResponseSchema
Properties
Bucket
Google Cloud Storage bucket containing the source (see Bucket Name Requirements).
Declaration
[JsonProperty("bucket")]
public virtual string Bucket { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Generation
Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
Declaration
[JsonProperty("generation")]
public virtual long? Generation { get; set; }
Property Value
Type | Description |
---|---|
long? |
Object__
Google Cloud Storage object containing the source. This object must be a gzipped archive file (.tar.gz
)
containing source to build.
Declaration
[JsonProperty("object")]
public virtual string Object__ { get; set; }
Property Value
Type | Description |
---|---|
string |
SourceUploadUrl
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.
Declaration
[JsonProperty("sourceUploadUrl")]
public virtual string SourceUploadUrl { get; set; }
Property Value
Type | Description |
---|---|
string |