Class: Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Directory
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2Directory
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v1/classes.rb,
generated/google/apis/remotebuildexecution_v1/representations.rb,
generated/google/apis/remotebuildexecution_v1/representations.rb
Overview
A Directory
represents a directory node in a file tree, containing zero or
more children FileNodes,
DirectoryNodes and
SymlinkNodes.
Each Node
contains its name in the directory, either the digest of its
content (either a file blob or a Directory
proto) or a symlink target, as
well as possibly some metadata about the file or directory.
In order to ensure that two equivalent directory trees hash to the same
value, the following restrictions MUST be obeyed when constructing a
a Directory
:
- Every child in the directory must have a path of exactly one segment. Multiple levels of directory hierarchy may not be collapsed.
- Each child in the directory must have a unique path segment (file name).
- The files, directories and symlinks in the directory must each be sorted
in lexicographical order by path. The path strings must be sorted by code
point, equivalently, by UTF-8 bytes.
A
Directory
that obeys the restrictions is said to be in canonical form. As an example, the following could be used for a file namedbar
and a directory namedfoo
with an executable file namedbaz
(hashes shortened for readability):json // (Directory proto) ` files: [ ` name: "bar", digest: ` hash: "4a73bc9d03...", size: 65534 ` ` ], directories: [ ` name: "foo", digest: ` hash: "4cf2eda940...", size: 43 ` ` ] ` // (Directory proto with hash "4cf2eda940..." and size 43) ` files: [ ` name: "baz", digest: ` hash: "b2c941073e...", size: 1294, `, is_executable: true ` ] `
Instance Attribute Summary collapse
-
#directories ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2DirectoryNode>
The subdirectories in the directory.
-
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode>
The files in the directory.
-
#symlinks ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode>
The symlinks in the directory.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2Directory
constructor
A new instance of BuildBazelRemoteExecutionV2Directory.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildBazelRemoteExecutionV2Directory
Returns a new instance of BuildBazelRemoteExecutionV2Directory
629 630 631 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 629 def initialize(**args) update!(**args) end |
Instance Attribute Details
#directories ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2DirectoryNode>
The subdirectories in the directory.
Corresponds to the JSON property directories
617 618 619 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 617 def directories @directories end |
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2FileNode>
The files in the directory.
Corresponds to the JSON property files
622 623 624 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 622 def files @files end |
#symlinks ⇒ Array<Google::Apis::RemotebuildexecutionV1::BuildBazelRemoteExecutionV2SymlinkNode>
The symlinks in the directory.
Corresponds to the JSON property symlinks
627 628 629 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 627 def symlinks @symlinks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
634 635 636 637 638 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 634 def update!(**args) @directories = args[:directories] if args.key?(:directories) @files = args[:files] if args.key?(:files) @symlinks = args[:symlinks] if args.key?(:symlinks) end |