Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs

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

Describes the expected outputs of the command.

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) ⇒ GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs

Returns a new instance of GoogleDevtoolsRemoteworkersV1test2CommandTaskOutputs.



2566
2567
2568
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2566

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

Instance Attribute Details

#directoriesArray<String>

A list of expected directories, relative to the execution root. All paths MUST be delimited by forward slashes. Corresponds to the JSON property directories

Returns:

  • (Array<String>)


2540
2541
2542
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2540

def directories
  @directories
end

#filesArray<String>

A list of expected files, relative to the execution root. All paths MUST be delimited by forward slashes. Corresponds to the JSON property files

Returns:

  • (Array<String>)


2546
2547
2548
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2546

def files
  @files
end

#stderr_destinationString

The destination to which any stderr should be sent. The method by which the bot should send the stream contents to that destination is not defined in this API. As examples, the destination could be a file referenced in the files field in this message, or it could be a URI that must be written via the ByteStream API. Corresponds to the JSON property stderrDestination

Returns:

  • (String)


2555
2556
2557
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2555

def stderr_destination
  @stderr_destination
end

#stdout_destinationString

The destination to which any stdout should be sent. The method by which the bot should send the stream contents to that destination is not defined in this API. As examples, the destination could be a file referenced in the files field in this message, or it could be a URI that must be written via the ByteStream API. Corresponds to the JSON property stdoutDestination

Returns:

  • (String)


2564
2565
2566
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2564

def stdout_destination
  @stdout_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2571
2572
2573
2574
2575
2576
# File 'generated/google/apis/remotebuildexecution_v1/classes.rb', line 2571

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