Show / Hide Table of Contents

Class OperationMetadataV1

Metadata describing an Operation

Inheritance
System.Object
OperationMetadataV1
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 OperationMetadataV1 : IDirectResponseSchema

Properties

BuildId

The Cloud Build ID of the function created or updated by an API call. This field is only populated for Create and Update operations.

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

BuildName

The Cloud Build Name of the function deployment. This field is only populated for Create and Update operations. projects//locations//builds/.

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

ETag

The ETag of the item.

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

Request

The original request that started the operation.

Declaration
[JsonProperty("request")]
public virtual IDictionary<string, object> Request { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

SourceToken

An identifier for Firebase function sources. Disclaimer: This field is only supported for Firebase function deployments.

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

Target

Target of the operation - for example projects/project-1/locations/region-1/functions/function-1

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

Type

Type of operation.

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

UpdateTime

The last update timestamp of the operation.

Declaration
[JsonProperty("updateTime")]
public virtual object UpdateTime { get; set; }
Property Value
Type Description
System.Object

VersionId

Version id of the function created or updated by an API call. This field is only populated for Create and Update operations.

Declaration
[JsonProperty("versionId")]
public virtual long? VersionId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top