Class: Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2SymlinkNode
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::BuildBazelRemoteExecutionV2SymlinkNode
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb
Overview
A SymlinkNode
represents a symbolic link.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the symlink.
-
#target ⇒ String
The target path of the symlink.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2SymlinkNode
constructor
A new instance of BuildBazelRemoteExecutionV2SymlinkNode.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2SymlinkNode
Returns a new instance of BuildBazelRemoteExecutionV2SymlinkNode
2030 2031 2032 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the symlink.
Corresponds to the JSON property name
2018 2019 2020 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2018 def name @name end |
#target ⇒ String
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. The canonical form forbids the substrings /./
and //
in the target
path. ..
components are allowed anywhere in the target path.
Corresponds to the JSON property target
2028 2029 2030 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2028 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2035 2036 2037 2038 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2035 def update!(**args) @name = args[:name] if args.key?(:name) @target = args[:target] if args.key?(:target) end |