Show / Hide Table of Contents

Class ClusterOperationMetadata

Metadata describing the operation.

Inheritance
System.Object
ClusterOperationMetadata
Implements
Google.Apis.Requests.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.v1beta2.Data
Assembly: Google.Apis.Dataproc.v1beta2.dll
Syntax
public class ClusterOperationMetadata : IDirectResponseSchema

Properties

ClusterName

Output only. Name of the cluster for the operation.

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

ClusterUuid

Output only. Cluster UUID for the operation.

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

Description

Output only. Short description of operation.

Declaration
[JsonProperty("description")]
public virtual string Description { 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

Labels

Output only. 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

Output only. The operation type.

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

Status

Output only. Current operation status.

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

StatusHistory

Output only. The previous operation status.

Declaration
[JsonProperty("statusHistory")]
public virtual IList<ClusterOperationStatus> StatusHistory { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ClusterOperationStatus>

Warnings

Output only. Errors 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

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top