Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2NodeProperties

Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is responsible for specifying the properties that it accepts.

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

Properties

ETag

The ETag of the item.

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

Mtime

The file's last modification timestamp.

Declaration
[JsonProperty("mtime")]
public virtual object Mtime { get; set; }
Property Value
Type Description
System.Object

Properties

A list of string-based NodeProperties.

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

UnixMode

The UNIX file mode, e.g., 0755.

Declaration
[JsonProperty("unixMode")]
public virtual long? UnixMode { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

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