Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2Directory
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2Directory
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1alpha/classes.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb,
lib/google/apis/remotebuildexecution_v1alpha/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::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata>
Any subdirectories Corresponds to the JSON property
directories
. -
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1alpha::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.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2Directory
Returns a new instance of GoogleDevtoolsRemoteworkersV1test2Directory.
2896 2897 2898 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2896 def initialize(**args) update!(**args) end |
Instance Attribute Details
#directories ⇒ Array<Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata>
Any subdirectories
Corresponds to the JSON property directories
2889 2890 2891 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2889 def directories @directories end |
#files ⇒ Array<Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2FileMetadata>
The files in this directory
Corresponds to the JSON property files
2894 2895 2896 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2894 def files @files end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2901 2902 2903 2904 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 2901 def update!(**args) @directories = args[:directories] if args.key?(:directories) @files = args[:files] if args.key?(:files) end |