Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2Directory

Inherits:
Object
  • Object
show all
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

The contents of a directory. Similar to the equivalent message in the Remote Execution API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2Directory

Returns a new instance of GoogleDevtoolsRemoteworkersV1test2Directory.



3381
3382
3383
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3381

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#directoriesArray<Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2DirectoryMetadata>

Any subdirectories Corresponds to the JSON property directories



3374
3375
3376
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3374

def directories
  @directories
end

#filesArray<Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemoteworkersV1test2FileMetadata>

The files in this directory Corresponds to the JSON property files



3379
3380
3381
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3379

def files
  @files
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3386
3387
3388
3389
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 3386

def update!(**args)
  @directories = args[:directories] if args.key?(:directories)
  @files = args[:files] if args.key?(:files)
end