class Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2OutputSymlink

An `OutputSymlink` is similar to a Symlink, but it is used as an output in an ` ActionResult`. `OutputSymlink` is binary-compatible with `SymlinkNode`.

Attributes

node_properties[RW]

Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is responsible for specifying the properties that it accepts. Corresponds to the JSON property `nodeProperties` @return [Google::Apis::RemotebuildexecutionV1alpha::BuildBazelRemoteExecutionV2NodeProperties]

path[RW]

The full path of the symlink relative to the working directory, including the filename. The path separator is a forward slash `/`. Since this is a relative path, it MUST NOT begin with a leading forward slash. Corresponds to the JSON property `path` @return [String]

target[RW]

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. Corresponds to the JSON property `target` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1205
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1210
def update!(**args)
  @node_properties = args[:node_properties] if args.key?(:node_properties)
  @path = args[:path] if args.key?(:path)
  @target = args[:target] if args.key?(:target)
end