Show / Hide Table of Contents

Class WorkflowNode

The workflow node.

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

Properties

Error

Output only. The error detail.

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

JobId

Output only. The job id; populated after the node enters RUNNING state.

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

PrerequisiteStepIds

Output only. Node's prerequisite nodes.

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

State

Output only. The node state.

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

StepId

Output only. The name of the node.

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

Implements

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