Class RddOperationGraph
Graph representing RDD dependencies. Consists of edges and a root cluster.
Inheritance
RddOperationGraph
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class RddOperationGraph : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
Edges
Declaration
[JsonProperty("edges")]
public virtual IList<RddOperationEdge> Edges { get; set; }
Property Value
IncomingEdges
Declaration
[JsonProperty("incomingEdges")]
public virtual IList<RddOperationEdge> IncomingEdges { get; set; }
Property Value
OutgoingEdges
Declaration
[JsonProperty("outgoingEdges")]
public virtual IList<RddOperationEdge> OutgoingEdges { get; set; }
Property Value
RootCluster
Declaration
[JsonProperty("rootCluster")]
public virtual RddOperationCluster RootCluster { get; set; }
Property Value
StageId
Declaration
[JsonProperty("stageId")]
public virtual long? StageId { get; set; }
Property Value
Implements