Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2LogFile

A LogFile is a log stored in the CAS.

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

Properties

Digest

The digest of the log contents.

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

ETag

The ETag of the item.

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

HumanReadable

This is a hint as to the purpose of the log, and is set to true if the log is human-readable text that can be usefully displayed to a user, and false otherwise. For instance, if a command-line client wishes to print the server logs to the terminal for a failed action, this allows it to avoid displaying a binary file.

Declaration
[JsonProperty("humanReadable")]
public virtual bool? HumanReadable { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

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