Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemoteworkersV1test2Directory

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/remotebuildexecution_v1alpha/classes.rb,
generated/google/apis/remotebuildexecution_v1alpha/representations.rb,
generated/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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemoteworkersV1test2Directory

Returns a new instance of GoogleDevtoolsRemoteworkersV1test2Directory



3511
3512
3513
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 3511

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

Instance Attribute Details

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

Any subdirectories Corresponds to the JSON property directories



3504
3505
3506
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 3504

def directories
  @directories
end

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

The files in this directory Corresponds to the JSON property files



3509
3510
3511
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 3509

def files
  @files
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3516
3517
3518
3519
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 3516

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