Show / Hide Table of Contents

Class BuildBazelRemoteExecutionV2SymlinkNode

A SymlinkNode represents a symbolic link.

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

Properties

ETag

The ETag of the item.

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

Name

The name of the symlink.

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

Target

The target path of the symlink. The path separator is a forward slash /. The target path can be relative to the parent directory of the symlink or it can be an absolute path starting with /. Support for absolute paths can be checked using the Capabilities API. .. components are allowed anywhere in the target path as logical canonicalization may lead to different behavior in the presence of directory symlinks (e.g. foo/../bar may not be the same as bar). To reduce potential cache misses, canonicalization is still recommended where this is possible without impacting correctness.

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

Implements

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