Show / Hide Table of Contents

Class Operation

This resource represents a long-running operation that is the result of a network API call.

Inheritance
object
Operation
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Genomics.v2alpha1.Data
Assembly: Google.Apis.Genomics.v2alpha1.dll
Syntax
public class Operation : IDirectResponseSchema

Properties

Done

If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.

Declaration
[JsonProperty("done")]
public virtual bool? Done { get; set; }
Property Value
Type Description
bool?

Error

The error result of the operation in case of failure or cancellation.

Declaration
[JsonProperty("error")]
public virtual Status Error { get; set; }
Property Value
Type Description
Status

ETag

The ETag of the item.

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

Metadata

An OperationMetadata or Metadata object. This will always be returned with the Operation.

Declaration
[JsonProperty("metadata")]
public virtual IDictionary<string, object> Metadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TKey, TValue><string, object>

Name

The server-assigned name, which is only unique within the same service that originally returns it. For example: operations/CJHU7Oi_ChDrveSpBRjfuL-qzoWAgEw

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Response

An Empty object.

Declaration
[JsonProperty("response")]
public virtual IDictionary<string, object> Response { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<TKey, TValue><string, object>

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX