Show / Hide Table of Contents

Class GenerateUploadUrlResponse

Response of GenerateSourceUploadUrl method.

Inheritance
System.Object
GenerateUploadUrlResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudFunctions.v1.Data
Assembly: Google.Apis.CloudFunctions.v1.dll
Syntax
public class GenerateUploadUrlResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

UploadUrl

The generated Google Cloud Storage signed URL that should be used for a function source code upload. The uploaded file should be a zip archive which contains a function.

Declaration
[JsonProperty("uploadUrl")]
public virtual string UploadUrl { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top