Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2FileNode

A FileNode represents a single file and associated metadata.

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

Properties

Digest

The digest of the file's content.

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

IsExecutable

True if file is executable, false otherwise.

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

Name

The name of the file.

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

NodeProperties

Declaration
[JsonProperty("nodeProperties")]
public virtual BuildBazelRemoteExecutionV2NodeProperties NodeProperties { get; set; }
Property Value
Type Description
BuildBazelRemoteExecutionV2NodeProperties

Implements

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