Show / Hide Table of Contents

Class BatchOperationMetadata

Metadata describing the Batch operation.

Inheritance
System.Object
BatchOperationMetadata
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.Dataproc.v1.Data
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class BatchOperationMetadata : IDirectResponseSchema

Properties

Batch

Name of the batch for the operation.

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

BatchUuid

Batch UUID for the operation.

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

CreateTime

The time when the operation was created.

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

Description

Short description of the operation.

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

DoneTime

The time when the operation finished.

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

ETag

The ETag of the item.

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

Labels

Labels associated with the operation.

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

OperationType

The operation type.

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

Warnings

Warnings encountered during operation execution.

Declaration
[JsonProperty("warnings")]
public virtual IList<string> Warnings { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top