Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2OutputDirectory

An OutputDirectory is the output in an ActionResult corresponding to a directory's full contents rather than a single file.

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

Properties

ETag

The ETag of the item.

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

Path

The full path of the directory relative to the working directory. The path separator is a forward slash /. Since this is a relative path, it MUST NOT begin with a leading forward slash. The empty string value is allowed, and it denotes the entire working directory.

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

TreeDigest

The digest of the encoded Tree proto containing the directory's contents.

Declaration
[JsonProperty("treeDigest")]
public virtual BuildBazelRemoteExecutionV2Digest TreeDigest { get; set; }
Property Value
Type Description
BuildBazelRemoteExecutionV2Digest

Implements

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