Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2Tree

A Tree contains all the Directory protos in a single directory Merkle tree, compressed into one message.

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

Properties

Children

All the child directories: the directories referred to by the root and, recursively, all its children. In order to reconstruct the directory tree, the client must take the digests of each of the child directories and then build up a tree starting from the root.

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

ETag

The ETag of the item.

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

Root

The root directory in the tree.

Declaration
[JsonProperty("root")]
public virtual BuildBazelRemoteExecutionV2Directory Root { get; set; }
Property Value
Type Description
BuildBazelRemoteExecutionV2Directory

Implements

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