Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2Directory
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2Directory
- 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
The contents of a directory. Similar to the equivalent message in the Remote Execution API.
Instance Attribute Summary collapse
-
#directories ⇒ Array<Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata>
Any subdirectories Corresponds to the JSON property
directories
. -
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2FileMetadata>
The files in this directory Corresponds to the JSON property
files
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2Directory
constructor
A new instance of GoogleDevtoolsRemoteworkersV1test2Directory.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2Directory
Returns a new instance of GoogleDevtoolsRemoteworkersV1test2Directory
3486 3487 3488 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 3486 def initialize(**args) update!(**args) end |
Instance Attribute Details
#directories ⇒ Array<Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata>
Any subdirectories
Corresponds to the JSON property directories
3479 3480 3481 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 3479 def directories @directories end |
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2FileMetadata>
The files in this directory
Corresponds to the JSON property files
3484 3485 3486 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 3484 def files @files end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3491 3492 3493 3494 |
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 3491 def update!(**args) @directories = args[:directories] if args.key?(:directories) @files = args[:files] if args.key?(:files) end |